From b4118f66ff4a921a6952b35f5d3238bdc914c87a Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Thu, 29 Sep 2016 09:20:37 +0200 Subject: [PATCH] remove bower --- .bowerrc | 4 ---- bower.json | 39 --------------------------------------- install.sh | 5 +---- install_dev.sh | 5 +---- 4 files changed, 2 insertions(+), 51 deletions(-) delete mode 100644 .bowerrc delete mode 100644 bower.json diff --git a/.bowerrc b/.bowerrc deleted file mode 100644 index e0163687..00000000 --- a/.bowerrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "directory" : "app/Resources/static/lib", - "json" : "bower.json" -} diff --git a/bower.json b/bower.json deleted file mode 100644 index f2d2bd26..00000000 --- a/bower.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "wallabag", - "version": "2.0.0-beta.1", - "homepage": "https://github.com/wallabag/wallabag", - "authors": [ - { - "name": "Nicolas Lœuillet", - "email": "nicolas@loeuillet.org", - "homepage": "http://www.cdetc.fr", - "role": "Developer" - }, - { - "name": "Thomas Citharel", - "homepage": "http://tcit.fr", - "role": "Developer" - }, - { - "name": "Jérémy Benoist", - "homepage": "http://www.j0k3r.net", - "role": "Developer" - } - ], - "description": "wallabag is a self hostable application for saving web pages", - "license": "MIT", - "main": "bower.json", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ], - "dependencies": { - "icomoon-bower": "^0.1.0", - "bower-pt-sans": "pt-sans#*", - "roboto-fontface": "^0.4.5", - "material-design-icons-iconfont": "^2.0.4" - } -} diff --git a/install.sh b/install.sh index a486e8a5..29b343b2 100755 --- a/install.sh +++ b/install.sh @@ -5,12 +5,9 @@ if [[ $ASSETS == 'build' ]]; then composer install --no-interaction --no-progress --prefer-dist -o chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm - echo "Downloading javascript librairies through npm..." + echo "Downloading librairies through npm..." vendor/mouf/nodejs-installer/bin/local/npm install - echo "Downloading fonts librairies through bower..." - node_modules/bower/bin/bower install - echo "Concat, minify and installing assets..." node_modules/grunt/bin/grunt else diff --git a/install_dev.sh b/install_dev.sh index 81f871da..61a4f6fd 100755 --- a/install_dev.sh +++ b/install_dev.sh @@ -3,12 +3,9 @@ echo "Installing PHP dependencies (including dev) through Composer..." composer install -echo "Downloading javascript librairies through npm..." +echo "Downloading librairies through npm..." npm install -echo "Downloading fonts librairies through bower..." -bower install - echo "Concat, minify and installing assets..." grunt -- 2.41.0