aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-18 12:22:12 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-18 12:22:12 +0200
commit37b1b8750d728d11d95fb64fe5f26f9278555354 (patch)
tree3bbcafc9e7fd6757f5c2981ce4abb137d43f5219 /package.json
parentUpdated install.sh (diff)
downloadnewspipe-37b1b8750d728d11d95fb64fe5f26f9278555354.tar.gz
newspipe-37b1b8750d728d11d95fb64fe5f26f9278555354.tar.bz2
newspipe-37b1b8750d728d11d95fb64fe5f26f9278555354.zip
added bower in the postdeployment of the app
Diffstat (limited to 'package.json')
-rw-r--r--package.json4
1 files changed, 3 insertions, 1 deletions
diff --git a/package.json b/package.json
index b31c2383..c446a5d5 100644
--- a/package.json
+++ b/package.json
@@ -18,6 +18,7 @@
"main": "src/web/js/app.js",
"dependencies": {
"bootstrap": "^3.3.7",
+ "bower": "^1.7.9",
"classnames": "^2.2.5",
"flux": "^2.1.1",
"jquery": "^3.1.1",
@@ -36,7 +37,8 @@
},
"scripts": {
"start": "watchify -o src/web/static/js/bundle.min.js -v -d src/web/js/app.js",
- "build": "browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > src/web/static/js/bundle.min.js"
+ "build": "browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > src/web/static/js/bundle.min.js",
+ "postinstall": "./node_modules/bower/bin/bower install"
},
"browserify": {
"transform": [
bgstack15