Makefile 417 B

1234567891011121314151617181920
  1. REPORTER = spec
  2. MOCHA = node_modules/.bin/mocha
  3. test:
  4. @NODE_ENV=test $(MOCHA) --require should --reporter $(REPORTER)
  5. test-colors:
  6. @NODE_ENV=test $(MOCHA) --require should --reporter $(REPORTER) --colors
  7. publish:
  8. @npm version patch -m "version bump"
  9. @npm publish
  10. JSDOC = node_modules/.bin/jsdoc
  11. JSDOC_CONF = tools/jsdoc-conf.json
  12. doc:
  13. $(JSDOC) --configure $(JSDOC_CONF)
  14. .PHONY: test test-colors publish doc