gpt4 book ai didi

visual-studio-code - 在 launch.json 中使用 grunt

转载 作者:行者123 更新时间:2023-12-04 11:21:52 24 4
gpt4 key购买 nike

我加载了 yeoman generator-meanjs 并使用 Visual Studio Code 打开它。
调试器运行良好。当我点击调试侧栏按钮时
launch.json 文件是为我生成的。 launch.json 生成器正在查看 package.json,其中包含 "scripts": { "start": "grunt"} .

生成器使用 grunt 来启动应用程序。 launch.json 文件有
下列:

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "grunt",
"stopOnEntry": false,
"args": [],
"cwd": ".",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858
}
]
}

当我更换 'program' : 'grunt'使用 server.js 它可以工作。如果我可以将类型更改为 grunt,但那里似乎只支持 node 或 mono。

最佳答案

我设法通过使用 grunt-cli 的绝对路径使其工作,如下所示:

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Grunt",
"args": ["build"],
"program": "${env.APPDATA}\\npm\\node_modules\\grunt-cli\\bin\\grunt",
"stopOnEntry": true,
"cwd": "${workspaceRoot}"
}
]
}

正如@L.Butz 所指出的,在较新的 vscode 版本中,替换 env.APPDATA来自 env:APPDATA .

关于visual-studio-code - 在 launch.json 中使用 grunt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35064936/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com