如何使用键盘快捷键运行Gulp任务

时间:2018-03-01 10:14:13

标签: gulp visual-studio-code

我希望使用内置功能来运行VS代码的默认Gulp任务。我的tasks.json如下:

{ "version": "2.0.0", "tasks": [ { "type": "gulp", "task": "default", "problemMatcher": [] } ] }

当我使用键盘快捷键运行任务时(我的键绑定已经被修改以运行任务),我得到一个选项菜单,其中包含所有Gulp任务列表。要实际运行gulp命令,我必须从列表中选择'gulp:default'任务。如何在不必查看列表并选择“gulp:default”选项的情况下运行任务?

2 个答案:

答案 0 :(得分:1)

在workSpaceRoot的 .vscode / tasks.json 中:

尝试以下方法 - 您需要的主要内容是"标签"在你的键绑定中用作参数 - 标签可以是你想要的任何东西:

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Your task label",
            "command": "gulp",
            "args": ["default"],
            "type": "shell",
             "options": {
                "cwd": "${workspaceRoot}"
            }
            "problemMatcher": []
        }
    ]
}

键绑定

    { "key": "shift+escape",  
      "command": "workbench.action.tasks.runTask", 
      "args": "Your task label here"
    },

答案 1 :(得分:0)

按ctlr + shift + B运行任务

<强> tasks.json

{ "tasks": [ { "type": "gulp", "taskName": "gulp", "command": "gulp", "args": [ "html", "css" ], "isShellCommand": true, "isBuildCommand": true } ] }

这将运行gulp cssgulp html