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/'"