Simon Egersand
2018-02-07 44164f0ef13fcda5d81f4ab71a02796279740142
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: all clean install test
 
clean:
    rm -rf node_modules
 
install:
    npm install
 
snapshot:
    npm run test:snapshot:update
 
test:
    npm run test
 
test-watch:
    npm run test:watch