]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
remove bower
authorThomas Citharel <tcit@tcit.fr>
Thu, 29 Sep 2016 07:20:37 +0000 (09:20 +0200)
committerThomas Citharel <tcit@tcit.fr>
Thu, 29 Sep 2016 07:20:37 +0000 (09:20 +0200)
.bowerrc [deleted file]
bower.json [deleted file]
install.sh
install_dev.sh

diff --git a/.bowerrc b/.bowerrc
deleted file mode 100644 (file)
index e016368..0000000
--- 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 (file)
index f2d2bd2..0000000
+++ /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"
-  }
-}
index a486e8a5b565ec0c70da7e8e83365aa1f9722a49..29b343b2954ab66135db427124eff3033e15cc31 100755 (executable)
@@ -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
index 81f871daf86ff24bd9f69cb407b3cdf8deaa38be..61a4f6fd46d725b34aa50adf1ee477a5ac8cfcb0 100755 (executable)
@@ -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