Makefile 266 B

12345678910111213141516171819202122232425262728
  1. all: help
  2. help:
  3. bake -h
  4. test:
  5. cd test && ../node_modules/.bin/mocha -R spec .
  6. eslint:
  7. eslint .
  8. fix:
  9. eslint . --fix
  10. release: version push publish
  11. version:
  12. standard-version -m '%s'
  13. push:
  14. git push origin master --tags
  15. publish:
  16. npm publish
  17. .PHONY: test