凉亭依赖

要自动安装凉亭及其组件,必须

  1. package.json 中指定 bower 依赖项:

    "dependencies": {
        "bower": "^1.7.9"
    }
    
  2. 使用 scripts 执行 postinstall 命令

    "scripts": {
        "postinstall": "./node_modules/bower/bin/bower install"
    }
    
  3. 创建 .bowerrc 文件以设置要安装的 bower_components 的目录。否则 bower_components 将安装在根目录中。

    {
        "directory" : "app/bower_components"
    }
    

现在,Heroku 在 npm install 之后自动执行 bower install 命令