13 lines
141 B
Makefile
13 lines
141 B
Makefile
.PHONY: dist
|
|
dist:
|
|
rm -f dist/*.{js,css,html,map}
|
|
npm run build
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
npm run lint
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.map *.foo
|