凉亭依赖
要自动安装凉亭及其组件,必须
-
在
package.json
中指定 bower 依赖项:"dependencies": { "bower": "^1.7.9" }
-
使用
scripts
执行postinstall
命令"scripts": { "postinstall": "./node_modules/bower/bin/bower install" }
-
创建
.bowerrc
文件以设置要安装的 bower_components 的目录。否则 bower_components 将安装在根目录中。{ "directory" : "app/bower_components" }
现在,Heroku 在 npm install
之后自动执行 bower install
命令