0

現在、Visual Studio Code で tasks.json 0.1.0 バージョンのタスクを使用しています。

https://code.visualstudio.com/docs/editor/tasksに移動すると、VS コードがgulpファイル内のすべてのタスクを自動的に検出することが示されます。

タスクを自動検出するためにさまざまな拡張機能をインストールしましたが、まだ検出されません。

この時点で、すべての gulp タスクを処理する新しいバージョンの tasks.json を作成することを検討しています。

どうすればいいですか?これが私のtasks.json 0.1.0です:

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "gulp",
"isShellCommand": true,
"args": [],
"showOutput": "always",
"options": {
    "cwd": "${workspaceRoot}/MyAppName"
},
"tasks": [
    {
        "taskName": "build",
        "args": ["build:debug"]
    },
    {
        "taskName": "build:debug",
        "args": ["build:debug"]
    },
    {
        "taskName": "build:release",
        "args": ["build:release"]
    }
]
}

私は他の質問を見てきましたが、現時点では、tasks.json 2.0 で gulp を実行する方法を示すものはないようです。

このビルド タスクを、gulpfile を含むフォルダーの外から使用できるようにしたいと考えています。私のgulpfileが開かれているフォルダであれば、VSが自動的にタスクを検出することを知っています。

4

1 に答える 1

0

ウェブを精査した後、何も見つかりませんでした。build:debug gulp タスク用のカスタム ビルド イン コードをセットアップしたいと考えていました。

だから、私は自分自身を構築しました:

(buildDebug.sh)

#!/bin/bash
clear
pwd
cd [your gulpfile.js directory]
gulp build:debug

(タスク.json)

    {
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "taskName": "Run Build",
            "type": "shell",
            "command": "/c/[where you saved buildDebug.sh]/buildDebug.sh",
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "presentation": {
                "reveal": "always",
                "panel": "shared"
            }
        }
    ]
}
于 2017-09-06T20:21:11.693 に答える