Simon Egersand
2018-01-27 957b12b196150051e9ede1c94286a20f9a036c5a
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