microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
f521686613075eb4a9cebc89a01cbcf289ec258f

Branches

Tags

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

Clone

HTTPS

Download ZIP

.vscode/tasks.json

77lines · modecode

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