9 lines
67 B
Makefile
9 lines
67 B
Makefile
|
all:
|
||
|
npm install
|
||
|
|
||
|
clean:
|
||
|
rm -rf node_modules/*
|
||
|
|
||
|
check:
|
||
|
npm test
|