Makefile 156 B

123456789101112131415161718
  1. .PHONY: all clean install check test lint
  2. all:
  3. clean:
  4. rm -rf node_modules
  5. install:
  6. npm install
  7. check:
  8. npm test
  9. test:
  10. npm test
  11. lint:
  12. npm run lint