Makefile 184 B

12345678910111213
  1. build: components index.js
  2. @component build --dev
  3. components:
  4. @component install --dev
  5. clean:
  6. rm -fr build components template.js
  7. test:
  8. @open test/index.html
  9. .PHONY: clean test