microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
966588ec9727654c4a2f065feb7333f61ae7ef85

Branches

Tags

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

Clone

HTTPS

Download ZIP

.vscode/tasks.json

67lines · modecode

1{
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "label": "prepare-smoke-tests",
6 "type": "process",
7 "command": [
8 "yarn"
9 ],
10 "windows": {
11 "command": "yarn.cmd"
12 },
13 "args": [
14 "prepare-smoke-tests"
15 ],
16 "presentation": {
17 "echo": true,
18 "reveal": "silent",
19 "focus": false,
20 "panel": "shared",
21 "showReuseMessage": false,
22 "clear": false
23 }
24 },
25 {
26 "label": "compile-smoke-tests",
27 "type": "process",
28 "command": [
29 "./node_modules/.bin/tsc"
30 ],
31 "windows": {
32 "command": ".\\node_modules\\.bin\\tsc.cmd"
33 },
34 "options": {
35 "cwd": "${workspaceRoot}/test/smoke/vscode/test/smoke"
36 },
37 "presentation": {
38 "echo": true,
39 "reveal": "silent",
40 "focus": false,
41 "panel": "shared",
42 "showReuseMessage": false,
43 "clear": false
44 }
45 },
46 {
47 "label": "Prepare Smoke Tests",
48 "dependsOn": [
49 "prepare-smoke-tests"
50 ]
51 },
52 {
53 "label": "Build Smoke Tests",
54 "dependsOn": [
55 "compile-smoke-tests"
56 ]
57 },
58 {
59 "type": "npm",
60 "script": "build",
61 "group": "build",
62 "problemMatcher": [],
63 "label": "gulp: build",
64 "detail": "gulp build"
65 }
66 ]
67}
68