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:
@npm install
test:
test: deps
@npm run test
build:
build: deps
@npm run build
@echo "Build success!"
@echo "Output: 'dist/', 'examples/browser/'"