Simon Egersand
2018-02-07 63e0b0b2fc6f361b5ac4751eb05bc5983aea5873
commit | author | age
c30b4d 1 .PHONY: all clean install test
SE 2
3 clean:
4     rm -rf node_modules
5
6 install:
7     npm install
8
63e0b0 9 prettify:
SE 10     echo '## Running Prettifier' &&
11     ./node_modules/.bin/prettier --write DateTime.js src/*.js test/*.js example/*.js demo/src/*.js"
12
c30b4d 13 test:
SE 14     npm run test
15
16 test-watch:
17     npm run test:watch