标题说明了一切。我仍然使用 Grunt,虽然感觉我应该使用 Gulp。
尽管如此,我想使用调色板或快捷键来启动一些 Grunt 任务,而不是 alt-tabbing 到 CMD 窗口。阅读文档,看起来我需要编写一个 json 任务。什么???这就像编写一个 Grunt 任务来运行一个 Grunt 任务。
有没有其他人已经为运行 Grunt 编写了一个通用的 VSCode 任务?
编辑:感谢接受的答案,这是我正在运行的:
{
"version": "0.1.0",
"command": "grunt",
"isShellCommand": true,
"tasks": [{
"taskName": "default"
},{
"taskName": "stage"
},{
"taskName": "dist"
}]
}
我打开调色板,然后看到 default、stage、dist。不确定这是否是最好的方法,但它到目前为止有效。绝对有改进的余地。