UNPKG

413 BPlain TextView Raw
1build:
2 @chrome http://localhost:3000/example/index.html
3 @gulp
4
5test:
6 @open http://localhost:8080/bundle
7 @gulp webpack:test
8
9test-karma:
10 @node_modules/.bin/karma start --single-run
11
12test-coveralls:
13 @echo TRAVIS_JOB_ID $(TRAVIS_JOB_ID)
14 @node_modules/.bin/karma start --single-run && \
15 cat ./coverage/lcov/lcov.info | ./node_modules/coveralls/bin/coveralls.js
16
17doc:
18 @ghp-import example -n -p
19
20.PHONY: test