mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 13:24:05 -06:00
22 lines
296 B
Makefile
22 lines
296 B
Makefile
all: build
|
|
|
|
.PHONY: build
|
|
build:
|
|
@npm run build
|
|
|
|
.PHONY: test
|
|
test:
|
|
@npm test
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
@standard index.js
|
|
@standard test/index.js
|
|
@standard example/example.js
|
|
|
|
.PHONY: lint-fix
|
|
lint-fix:
|
|
@standard --fix index.js
|
|
@standard --fix test/index.js
|
|
@standard --fix example/example.js
|