wallet-core/node_modules/to-iso-string/Makefile

17 lines
275 B
Makefile
Raw Normal View History

2016-10-10 03:43:44 +02:00
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