我正在尝试在VS Code中调试gruntfile.js。我的launch.json看起来像这样:
{
"name: Grunt",
"type": "node",
"request": "launch",
"program": "/usr/local/bin/grunt",
"args": ["build_script"],
"cwd": "${workspaceRoot}",
"stopOnEntry": false,
"console": "internalConsole"
}
它可以工作,我可以使用断点等对其进行调试,但是问题是,用grunt.log.writeln(..),grunt.fail.warn(..)完成的所有输出都不会显示在调试控制台。
如何使grunt使用grunt.log的调试控制台?
谢谢