Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

16 lines
220 B
Makefile

build: components index.js
@component build --dev
components: component.json
@component install --dev
clean:
rm -fr build components template.js
test:
@mocha --require should --reporter spec
.PHONY: clean test