Makefile 281 B

123456789101112131415161718
  1. build: components index.js
  2. @component build --dev
  3. components: component.json
  4. @component install --dev
  5. clean:
  6. rm -fr build components template.js
  7. test: node_modules
  8. @./node_modules/mocha/bin/mocha \
  9. --reporter spec
  10. node_modules: package.json
  11. @npm install
  12. .PHONY: clean