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-10-30 21:29:37 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2017-10-30 21:29:37 +0300
commitbb48a1c24a72de63b1a0c789961a4937e3f48e46 (patch)
treef18407f427db67094e4a0108845005642d8f93ff /Makefile
parent2cd7e403bf677692abaa3245011184a9475dee4b (diff)
Fix package size
* Don't package composer dev deps * Don't package the .phan dir * Don't package .hg dirs Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 72509bab8..e8c8e1095 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ composer.phar:
install-deps: install-composer-deps install-npm-deps-dev
install-composer-deps: composer.phar
- php composer.phar install
+ php composer.phar install --no-dev
install-npm-deps:
npm install --production
@@ -74,6 +74,7 @@ appstore: clean install-deps optimize-js
--exclude=.github \
--exclude=.gitignore \
--exclude=Gruntfile.js \
+ --exclude=.hg \
--exclude=issue_template.md \
--exclude=.jscsrc \
--exclude=.jshintignore \
@@ -87,6 +88,7 @@ appstore: clean install-deps optimize-js
--exclude=nbproject \
--exclude=/node_modules \
--exclude=package.json \
+ --exclude=.phan \
--exclude=phpunit*xml \
--exclude=screenshots \
--exclude=.scrutinizer.yml \