pixelnode/node_modules/to-iso-string/Makefile

17 lines
275 B
Makefile

build: components node_modules
@component build --dev
clean:
@rm -rf components build node_modules
components: component.json
@component install --dev
node_modules: package.json
@npm install
test: build
@./node_modules/.bin/mocha --reporter spec
.PHONY: clean test