UNPKG

283 BPlain TextView Raw
1all: setup lint test build docs
2
3setup:
4 npm install
5
6hooks:
7 cp pre-commit.sh .git/hooks/pre-commit
8
9lint:
10 npm run lint
11
12test:
13 npm test
14
15cover:
16 npm run cover
17
18build:
19 npm run build
20.PHONY: build
21
22bundle:
23 npm run bundle
24
25docs:
26 npm run docs
27.PHONY: docs
28
29commit:
30 npm run commit