对于 Nest.js,我正在使用 @nestjs/swagger 插件。一切都在开发中运行良好。在 jekins 中,我正在提取代码并进行构建。为此,我在服务器上安装了 nest cli。我在构建阶段收到此错误:
> nest build
Error "@nestjs/swagger/plugin" plugin could not be found!
我究竟做错了什么?服务器是ubuntu 17,在我的nest-cli.json中我有这个:
{
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"plugins": ["@nestjs/swagger/plugin"]
}
}
再次,它在本地运行良好。问题仅在詹金斯工作区。谢谢!