Skip to content

Commit

Permalink
Fix deps in Makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliusknorr committed Sep 7, 2018
1 parent 41f254a commit b979e37
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b979e37

Please sign in to comment.