I need to create node_modules in the root app when deploy new version using Octopus How can I create a run script using a new octopus step? I try:
npm install
But I get error when execute the script step
'The remote script failed with exit code 1'
Any ideas?
答案 0 :(得分:0)
您的构建系统应该为您处理该问题。然后,node_modules
目录应包含在您的应用程序包中,但理想情况下,也应将其捆绑在一起以减少您的应用程序所依赖的文件数。
如果确实需要在部署过程中运行此命令,则需要在执行部署步骤的服务器上安装NodeJS
和npm
(八达通服务器本身或辅助服务器)例如使用工人)。
有关更多信息,请查看此blog post