From f610e39418d0df526783d0c26cc412bef46ecef6 Mon Sep 17 00:00:00 2001 From: AlexCline Date: Wed, 20 Jan 2016 17:07:09 -0500 Subject: [PATCH] Use the local bower instead of the global one. This change updates package.json's postinstall command to use the locally installed bower, rather than the global bower which might not exist or might not be in the current user's PATH. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 616f5741..504dc066 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "node": ">=0.10.0" }, "scripts": { - "postinstall": "bower install --allow-root --config.interactive=false", + "postinstall": "node_modules/.bin/bower install --allow-root --config.interactive=false", "pretest": "npm install && npm run build_static", "build_static": "gulp build", "prelint": "npm install",