Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2017-11-15 17:03:52 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2017-11-15 17:03:52 +0300
commit0e20021ffdab8a44d2754a7e3d36fe50050e3bd1 (patch)
tree09c40112d07395e245c99627d77e29a823574776 /Makefile
parent22f3cc926f19b1f12005663a2b088b8ade3888fc (diff)
Fix 'make optimize-js'
To *optimize* js files we need webpack, which is a npm dev dependency and thus we have to first install those. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 16ca57a0d..247a5de90 100644
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ install-npm-deps:
install-npm-deps-dev:
npm install --deps
-optimize-js: install-npm-deps
+optimize-js: install-npm-deps-dev
./node_modules/webpack/bin/webpack.js --config js/webpack.prod.config.js
dev-setup: install-composer-deps-dev install-npm-deps-dev