From 9b6160ee79c8eba8167cf66750dc8cbee1c5190c Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Thu, 2 Mar 2017 08:39:12 +0000 Subject: [PATCH] build(Make): build task depends on node_modules --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cc3bb663f..39d31f6dd 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: clean node_modules semistandard test dist/my-wallet.js dist/my-wallet.min.j node_modules: npm install -build: +build: node_modules npm run build test: build @@ -11,7 +11,7 @@ test: build dist/my-wallet.js: build -dist/my-wallet.min.js: +dist/my-wallet.min.js: node_modules npm run dist npm shrinkwrap --dev