mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-22 22:58:08 +00:00
remove bower
This commit is contained in:
parent
0471e905b8
commit
b4118f66ff
4 changed files with 2 additions and 51 deletions
4
.bowerrc
4
.bowerrc
|
@ -1,4 +0,0 @@
|
|||
{
|
||||
"directory" : "app/Resources/static/lib",
|
||||
"json" : "bower.json"
|
||||
}
|
39
bower.json
39
bower.json
|
@ -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"
|
||||
}
|
||||
}
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue