Simon Egersand
2017-12-01 d0b63bcd5330053a64331014be9e118c66205e80
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: all clean install test
 
clean:
    rm -rf node_modules
 
install:
    npm install
 
test:
    npm run test
 
test-watch:
    npm run test:watch