Makefile 228 B

1234567891011121314151617
  1. install: package.json
  2. @npm install --production
  3. dev: package.json
  4. @npm install
  5. test:
  6. @mocha -r should -R spec test
  7. test-watch:
  8. @mocha -w -r should -R spec test
  9. clean:
  10. rm -rf node_modules
  11. .PHONY: test test-watch clean