From: Peter Haight Date: Tue, 30 Dec 2014 22:59:56 +0000 (-0800) Subject: Use the app version of bower instead of machine version. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ada6e5f1a623b82ab269ef01869d87cb450b11e4;p=civicrm-core.git Use the app version of bower instead of machine version. Once npm installs bower in node_modules, we should be using that one for all the bower commands instead of the local one. --- diff --git a/package.json b/package.json index f1cb2e01e5..386b8cca18 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "karma-jasmine": "~0.3.2" }, "scripts": { - "postinstall": "bower install", + "postinstall": "node node_modules/bower/bin/bower install", "test": "node node_modules/karma/bin/karma start tests/karma.conf.js" } }