microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
cdef68eb3c8280164fd0195303fcd86976b058d8

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.vscode/tasks.json

49lines · modepreview

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "prepare-smoke-tests",
            "type": "process",
            "command": ["yarn"],
            "windows": {
                "command": "yarn.cmd"
            },
            "args": ["prepare-smoke-tests"],
            "presentation": {
                "echo": true,
                "reveal": "silent",
                "focus": false,
                "panel": "shared",
                "showReuseMessage": false,
                "clear": false
            }
        },
        {
            "label": "compile-smoke-tests",
            "type": "process",
            "command": ["./node_modules/.bin/tsc"],
            "windows": {
                "command": ".\\node_modules\\.bin\\tsc.cmd"
            },
            "options": {
                "cwd": "${workspaceRoot}/test/smoke/vscode/test/smoke"
            },
            "presentation": {
                "echo": true,
                "reveal": "silent",
                "focus": false,
                "panel": "shared",
                "showReuseMessage": false,
                "clear": false
            }
        },
        {
            "label": "Prepare Smoke Tests",
            "dependsOn": ["prepare-smoke-tests"]
        },
        {
            "label": "Build Smoke Tests",
            "dependsOn": ["compile-smoke-tests"]
        }
    ]
}