microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
preview

Branches

Tags

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

Clone

HTTPS

Download ZIP

.vscode/tasks.json

77lines · 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": "tslint-smoke-tests",
            "type": "process",
            "command": ["./node_modules/.bin/tslint"],
            "windows": {
                "command": ".\\node_modules\\.bin\\tslint.cmd",
            },
            "args": [
                "-c",
                "tslint.json",
                "--project",
                "tsconfig.json",
                "'src/**'",
            ],
            "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": ["tslint-smoke-tests", "compile-smoke-tests"]
        }
    ],
}