10 lines
208 B
Makefile
Executable File
10 lines
208 B
Makefile
Executable File
npm-install-%: ## install specified % npm package
|
|
npm install $* --save-dev
|
|
git add package.json
|
|
|
|
validate-no-uncommitted-package-lock-changes:
|
|
git diff --exit-code package-lock.json
|
|
|
|
test:
|
|
npm run test
|