From cf9c982881119c9cc806bcb1fe7b42d7b3c910fc Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Sat, 26 Nov 2016 14:26:56 +0100 Subject: [PATCH] Fixup makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index dadcec9..0e298dc 100644 --- a/Makefile +++ b/Makefile @@ -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/'"