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