UNPKG

281 BPlain TextView Raw
1check: node_modules
2 flow check src/
3 cd src/; eslint .
4
5node_modules:
6 npm install
7
8build:
9 rm -rf dist
10 cp -r src/ dist
11 find dist/ -type f ! -name '*.js' | xargs -I {} rm {}
12 find dist/ -name '*.js' | xargs -I {} mv {} {}.flow
13 `npm bin`/browserify src/index.js > dist/index.js