标签: node.js jenkins deployment compiler-errors web-deployment
当我运行Jenkins工作时
我收到以下错误:
the term 'ng' is not recognized as the name of a cmdlet
有谁知道该怎么做?
答案 0 :(得分:0)
您应该将ng可执行文件的路径添加到%PATH%环境变量中。
ng
%PATH%
如果您在全球范围内安装了@angular/cli,则应为%AppData%\npm\bin。
@angular/cli
%AppData%\npm\bin
或者如果您只在项目中安装了它,那么它应该是.\node_modules\.bin。
.\node_modules\.bin
在Powershell中,只需使用
$env:Path += ";$env:APPDATA\npm\bin"
答案 1 :(得分:0)