From 1ff1effe586b58bc97a5106e7691a6892dd07991 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sat, 31 Oct 2015 11:55:27 +0100 Subject: [PATCH] Run bower after install --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index cdb4e6e..87f5d4d 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "grunt-contrib-watch": "~0.6.1", "grunt-phpcs": "~0.4.0", "grunt-phpunit": "~0.3.6", - "grunt-contrib-compress": "~0.13.0" + "grunt-contrib-compress": "~0.13.0", + "bower": "~1.6.3" }, "engines": { "node": "~0.10.29" @@ -19,6 +20,6 @@ "url": "https://github.com/Rudloff/alltube.git" }, "scripts": { - "postinstall": "./node_modules/grunt-cli/bin/grunt; curl http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz -o ffmpeg.tar.xz; tar xJf ffmpeg.tar.xz -C ffmpeg --strip-components=1" + "postinstall": "./node_modules/bower/bin/bower install; ./node_modules/grunt-cli/bin/grunt; curl http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz -o ffmpeg.tar.xz; tar xJf ffmpeg.tar.xz -C ffmpeg --strip-components=1" } }