UNPKG

953 BPlain TextView Raw
1BROWSERIFY_ARGS=--ignore=./node_connection template/entry.js
2
3
4build: compile compress
5
6compile:
7 ./node_modules/.bin/browserify ${BROWSERIFY_ARGS} -o leap.js
8
9compress:
10 ./node_modules/.bin/uglifyjs ./leap.js -o leap.min.js
11
12docs:
13 ./node_modules/jsdoc/jsdoc lib README.md -d docs
14
15
16test: build test-only
17
18test-only: test-node test-browser
19
20test-browser:
21 ./node_modules/.bin/mocha-phantomjs -R dot test/helpers/browser.html
22
23test-node:
24 ./node_modules/.bin/mocha lib/index.js test/helpers/node.js test/*.js -R dot
25
26stress: stress/punisher.js
27 node stress/punisher.js
28
29
30watch: watch-test
31
32watch-build:
33 ./node_modules/.bin/nodemon --watch lib --exec "make" build
34
35watch-test:
36 ./node_modules/.bin/nodemon --watch lib --exec "make" test
37
38
39open-in-browsers: build
40 open -a /Applications/Firefox.app test/helpers/browser.html
41 open -a /Applications/Safari.app test/helpers/browser.html
42 open -a /Applications/Google\ Chrome.app test/helpers/browser.html