Suvish Varghese Thoovamalayil
2017-11-27 c276ecf7e6e9cc40656028f2ea69e1f2555d66c9
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