Mean.io 0.5.5 Heroku 部署问题

Mean.io 0.5.5 Heroku deploy issues

尝试将 mean.io 应用程序部署到 Heroku 并 运行 应对各种挑战

Here are a few things I tried (Github Issue)

应用程序失败,因为 aggregated.js 缺少 packages/custom/ 文件夹中的 Bower 文件。我如何在 heroku 上 运行 mean postinstall

为了后代的缘故回答。

解决 bower 依赖问题

我有一些自定义包是在新包脚手架系统 bower install 作为安装后命令之前创建的。将此添加到任何依赖 Bower 依赖项的自定义包中。

  "scripts": {
    "postinstall" : "bower install"
  }

现在推送到 heroku 在每个包目录中运行 npm/bower,一切正常。