Merge pull request #146 from Kubuxu/feat/Makefile

Fixup makefile
This commit is contained in:
Haad 2016-11-29 13:34:55 +01:00 committed by GitHub
commit 951ca2eafe

View File

@ -1,12 +1,12 @@
all: deps test build all: build
deps: deps:
@npm install @npm install
test: test: deps
@npm run test @npm run test
build: build: deps
@npm run build @npm run build
@echo "Build success!" @echo "Build success!"
@echo "Output: 'dist/', 'examples/browser/'" @echo "Output: 'dist/', 'examples/browser/'"