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:
authorKevin Ndung'u <kevgathuku@gmail.com>2018-07-21 10:39:32 +0300
committerKevin Ndung'u <kevgathuku@gmail.com>2018-08-09 11:17:39 +0300
commitbb176a19174ffbeff26bf5bc7de839eff51fd73b (patch)
tree6448c0d392a0d423a0ac9519d45d7121d7cd1edf /Makefile
parentf5602d1850dd65a72b7081993c1aaaf3d8b5d38f (diff)
Add utilities to make dev easier
Signed-off-by: Kevin Ndung'u <kevgathuku@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 95aba4361..1f5565d47 100644
--- a/Makefile
+++ b/Makefile
@@ -33,10 +33,13 @@ install-npm-deps:
npm install --production
install-npm-deps-dev:
- npm install --deps
+ npm install
optimize-js: install-npm-deps-dev
- ./node_modules/webpack/bin/webpack.js --config js/webpack.prod.config.js
+ npm run build
+
+dev-js: install-npm-deps-dev
+ npm run dev
dev-setup: install-composer-deps-dev install-npm-deps-dev optimize-js