← All code files

Makefile

Common task shortcuts. Remember: recipes are indented with TABS.

.PHONY: install dev build test lint clean

install:
	npm ci

dev:
	npm run dev

build:
	npm run build

test:
	npm test

lint:
	npm run lint

clean:
	rm -rf dist node_modules

About this tool

Common task shortcuts. Remember: recipes are indented with TABS.

Ready-to-use Makefile — view the content, copy it, or download it with the correct filename. Free and 100% in your browser.