|
13 | 13 | "DEBUG_VSCODE_JAVA":"true", |
14 | 14 | "VSCODE_REDHAT_TELEMETRY_DEBUG":"true" |
15 | 15 | }, |
16 | | - "stopOnEntry": false, |
17 | 16 | "sourceMaps": true, |
18 | 17 | "outFiles": [ "${workspaceRoot}/dist/**/*.js" ], |
19 | 18 | "preLaunchTask": "npm: watch", |
|
28 | 27 | "request": "launch", |
29 | 28 | "runtimeExecutable": "${execPath}", |
30 | 29 | "args": ["--extensionDevelopmentPath=${workspaceRoot}" ], |
31 | | - "stopOnEntry": false, |
32 | 30 | "sourceMaps": true, |
33 | 31 | "outFiles": [ "${workspaceRoot}/dist/**/*.js" ], |
34 | 32 | "env": { |
|
45 | 43 | "runtimeExecutable": "${execPath}", |
46 | 44 | "debugWebviews": true, |
47 | 45 | "args": ["--extensionDevelopmentPath=${workspaceRoot}" ], |
48 | | - "stopOnEntry": false, |
49 | 46 | "sourceMaps": true, |
50 | 47 | "outFiles": [ "${workspaceRoot}/dist/**/*.js" ], |
51 | 48 | "env": { |
|
65 | 62 | "request": "launch", |
66 | 63 | "runtimeExecutable": "${execPath}", |
67 | 64 | "args": ["--extensionDevelopmentPath=${workspaceRoot}" ], |
68 | | - "stopOnEntry": false, |
69 | 65 | "sourceMaps": true, |
70 | 66 | "outFiles": [ "${workspaceRoot}/dist/**/*.js" ], |
71 | 67 | "env": { |
|
81 | 77 | "request": "launch", |
82 | 78 | "runtimeExecutable": "${execPath}", |
83 | 79 | "args": ["--extensionDevelopmentPath=${workspaceRoot}" ], |
84 | | - "stopOnEntry": false, |
85 | 80 | "sourceMaps": true, |
86 | 81 | "outFiles": [ "${workspaceRoot}/dist/**/*.js" ], |
87 | 82 | "env": { |
|
103 | 98 | "--extensionDevelopmentPath=${workspaceRoot}", |
104 | 99 | "--extensionTestsPath=${workspaceRoot}/out/test/standard-mode-suite" |
105 | 100 | ], |
106 | | - "stopOnEntry": false, |
107 | 101 | "sourceMaps": true, |
108 | 102 | "outFiles": ["${workspaceRoot}/out/**/*.js"], |
109 | 103 | "preLaunchTask": "prepareStandardTest", |
|
120 | 114 | "--extensionDevelopmentPath=${workspaceRoot}", |
121 | 115 | "--extensionTestsPath=${workspaceRoot}/out/test/lightweight-mode-suite" |
122 | 116 | ], |
123 | | - "stopOnEntry": false, |
124 | 117 | "sourceMaps": true, |
125 | 118 | "outFiles": ["${workspaceRoot}/out/**/*.js"], |
126 | 119 | "preLaunchTask": "prepareLightweightTest", |
127 | 120 | "postDebugTask": "cleanTestFolder" |
128 | 121 | }, |
129 | 122 | { |
130 | 123 | "args": [ |
131 | | - "${input:gulpTask}" |
| 124 | + "${input:scriptTask}" |
132 | 125 | ], |
133 | | - "name": "Launch Gulp Task", |
134 | | - "program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js", |
| 126 | + "name": "Launch Build Script", |
| 127 | + "program": "${workspaceFolder}/scripts/index.js", |
135 | 128 | "request": "launch", |
136 | 129 | "skipFiles": [ |
137 | 130 | "<node_internals>/**" |
|
141 | 134 | ], |
142 | 135 | "inputs": [ |
143 | 136 | { |
144 | | - "id": "gulpTask", |
| 137 | + "id": "scriptTask", |
145 | 138 | "type": "promptString", |
146 | | - "description": "Name of the Gulp task to execute", |
147 | | - "default": "download_jre" |
| 139 | + "description": "Name of the build script to execute (e.g., download-jre, build-server, etc.)", |
| 140 | + "default": "download-jre" |
148 | 141 | } |
149 | 142 | ] |
150 | 143 | } |
0 commit comments