1234567891011121314151617
  1. .PHONY: boosh test
  2. boosh:
  3. @node -e "var json = require('./build');json.JSHINT_OPTS=JSON.parse(require('fs').readFileSync('./.jshintrc'));require('fs').writeFileSync('./build.json', JSON.stringify(json, null, 2))"
  4. @node_modules/smoosh/bin/smoosh make build.json
  5. test:
  6. npm test
  7. bump: boosh
  8. npm version patch
  9. node make/bump
  10. publish:
  11. npm publish
  12. git push origin master --tags