当前正在编写vscode扩展并在mac osx上进行测试。需要使用execa自动化一些npm命令。在最近一轮的vscode更新之后,我们不再能够运行我们现有的命令。
async runScript(script: string, cwd?: string) {
const scriptStdOut = execa.command(script, {
shell: true,
cwd: cwd,
windowsVerbatimArguments: true,
})
let out = await scriptStdOut
return out
}
错误:失败,退出代码为1(EPERM):npx ng更新@ angular / cli @ angular / core