microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
.vscode/tasks.json
49lines · 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": ["prepare-smoke-tests"], |
| 12 | "presentation": { |
| 13 | "echo": true, |
| 14 | "reveal": "silent", |
| 15 | "focus": false, |
| 16 | "panel": "shared", |
| 17 | "showReuseMessage": false, |
| 18 | "clear": false |
| 19 | } |
| 20 | }, |
| 21 | { |
| 22 | "label": "compile-smoke-tests", |
| 23 | "type": "process", |
| 24 | "command": ["./node_modules/.bin/tsc"], |
| 25 | "windows": { |
| 26 | "command": ".\\node_modules\\.bin\\tsc.cmd" |
| 27 | }, |
| 28 | "options": { |
| 29 | "cwd": "${workspaceRoot}/test/smoke/vscode/test/smoke" |
| 30 | }, |
| 31 | "presentation": { |
| 32 | "echo": true, |
| 33 | "reveal": "silent", |
| 34 | "focus": false, |
| 35 | "panel": "shared", |
| 36 | "showReuseMessage": false, |
| 37 | "clear": false |
| 38 | } |
| 39 | }, |
| 40 | { |
| 41 | "label": "Prepare Smoke Tests", |
| 42 | "dependsOn": ["prepare-smoke-tests"] |
| 43 | }, |
| 44 | { |
| 45 | "label": "Build Smoke Tests", |
| 46 | "dependsOn": ["compile-smoke-tests"] |
| 47 | } |
| 48 | ] |
| 49 | } |
| 50 | |