From b979e37ad61360f23331ea5c196551169a7ef496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 7 Sep 2018 16:12:23 +0200 Subject: [PATCH] Fix deps in Makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 11fcf435d..f0021202e 100644 --- a/Makefile +++ b/Makefile @@ -20,13 +20,15 @@ clean-build: clean-dist: rm -rf js/node_modules -install-deps: +install-deps: install-deps-js composer install + +install-deps-js: cd js && npm install -build: build-js +build: install-deps build-js -build-js: install-deps +build-js: install-deps-js cd js && npm run build build-js-dev: install-deps