Use the app version of bower instead of machine version.
authorPeter Haight <peterh@giantrabbit.com>
Tue, 30 Dec 2014 22:59:56 +0000 (14:59 -0800)
committerPeter Haight <peterh@giantrabbit.com>
Tue, 30 Dec 2014 22:59:56 +0000 (14:59 -0800)
Once npm installs bower in node_modules, we should be using that one for
all the bower commands instead of the local one.

package.json

index f1cb2e01e5ac89f13a8bc0cd203bd573031e50a3..386b8cca1891cb24c5a7f2932e776b6f4c703498 100644 (file)
@@ -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"
   }
 }