Meteor.js - 在部署到生产环境时如何包含debugOnly包?

时间:2015-05-31 21:20:11

标签: meteor

我想部署一个流星应用程序,我希望捆绑和部署所有软件包,包括那些标记为debugOnly的软件包 - 我该如何实现这一目标?我正在使用Arunoda的mupmupx工具进行部署,并将Heroku推送给Heroku。

感谢。

1 个答案:

答案 0 :(得分:3)

When you run meteor deploy --debug, it will deploy your application the same way as it is in development mode. I'd bet running meteor build --debug would yield the same results.

Of course, this may not be a good idea with with debugOnly packages :)