makefile 212 B

1234567891011121314151617
  1. .PHONY: clean test
  2. clean:
  3. @$(RM) -fr node_modules
  4. @$(RM) -fr npm-debug.log
  5. test: node_modules
  6. @node test
  7. node_modules: package.json
  8. @npm prune
  9. @npm install
  10. publish: test
  11. @git push --tags
  12. @npm publish