You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
266 B

  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