Simon Egersand
2018-02-09 7456bb4d4374b74538504577baf26028263338ff
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