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>2016-12-04 23:42:23 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2016-12-04 23:42:23 +0300
commit940f0d5bf77686e451f8f4b13983e2753791264b (patch)
treefe486e944178b78a91a0e4c2062aec11dc6f778f /Makefile
parent7254eb148a623797f993f6310574ecd95be52a67 (diff)
include bower dependencies in git
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 1e556aa0b..fc85f59c4 100644
--- a/Makefile
+++ b/Makefile
@@ -17,12 +17,11 @@ all: appstore
clean:
rm -rf $(build_dir)
rm -rf node_modules
- rm -rf js/vendor
composer.phar:
curl -sS https://getcomposer.org/installer | php
-install-deps: install-composer-deps install-npm-deps install-bower-deps
+install-deps: install-composer-deps install-npm-deps
install-composer-deps: composer.phar
php composer.phar install
@@ -33,13 +32,10 @@ install-npm-deps:
install-npm-deps-dev:
npm install --deps
-install-bower-deps: bower.json install-npm-deps
- ./node_modules/bower/bin/bower install
-
-optimize-js: install-npm-deps install-bower-deps
+optimize-js: install-npm-deps
./node_modules/requirejs/bin/r.js -o build/build.js
-dev-setup: install-composer-deps install-npm-deps-dev install-bower-deps
+dev-setup: install-composer-deps install-npm-deps-dev
start-imap-docker:
docker pull $(docker_image)