Simon Egersand
2018-02-07 d01420eaa6cb99888bc7d57510adea3763dcafa3
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