@opensumi/ide-task 2.12.1-next-079c1930
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/browser/index.d.ts +6 -0
- package/lib/browser/index.d.ts.map +1 -0
- package/lib/browser/index.js +41 -0
- package/lib/browser/index.js.map +1 -0
- package/lib/browser/parser.d.ts +316 -0
- package/lib/browser/parser.d.ts.map +1 -0
- package/lib/browser/parser.js +481 -0
- package/lib/browser/parser.js.map +1 -0
- package/lib/browser/problem-collector.d.ts +27 -0
- package/lib/browser/problem-collector.d.ts.map +1 -0
- package/lib/browser/problem-collector.js +61 -0
- package/lib/browser/problem-collector.js.map +1 -0
- package/lib/browser/problem-line-matcher.d.ts +92 -0
- package/lib/browser/problem-line-matcher.d.ts.map +1 -0
- package/lib/browser/problem-line-matcher.js +378 -0
- package/lib/browser/problem-line-matcher.js.map +1 -0
- package/lib/browser/task-config.d.ts +385 -0
- package/lib/browser/task-config.d.ts.map +1 -0
- package/lib/browser/task-config.js +1427 -0
- package/lib/browser/task-config.js.map +1 -0
- package/lib/browser/task-preferences.contribution.d.ts +6 -0
- package/lib/browser/task-preferences.contribution.d.ts.map +1 -0
- package/lib/browser/task-preferences.contribution.js +17 -0
- package/lib/browser/task-preferences.contribution.js.map +1 -0
- package/lib/browser/task-preferences.d.ts +3 -0
- package/lib/browser/task-preferences.d.ts.map +1 -0
- package/lib/browser/task-preferences.js +15 -0
- package/lib/browser/task-preferences.js.map +1 -0
- package/lib/browser/task-preferences.provider.d.ts +6 -0
- package/lib/browser/task-preferences.provider.d.ts.map +1 -0
- package/lib/browser/task-preferences.provider.js +29 -0
- package/lib/browser/task-preferences.provider.js.map +1 -0
- package/lib/browser/task.contribution.d.ts +8 -0
- package/lib/browser/task.contribution.d.ts.map +1 -0
- package/lib/browser/task.contribution.js +35 -0
- package/lib/browser/task.contribution.js.map +1 -0
- package/lib/browser/task.schema.d.ts +4 -0
- package/lib/browser/task.schema.d.ts.map +1 -0
- package/lib/browser/task.schema.js +294 -0
- package/lib/browser/task.schema.js.map +1 -0
- package/lib/browser/task.service.d.ts +43 -0
- package/lib/browser/task.service.d.ts.map +1 -0
- package/lib/browser/task.service.js +354 -0
- package/lib/browser/task.service.js.map +1 -0
- package/lib/browser/terminal-task-system.d.ts +80 -0
- package/lib/browser/terminal-task-system.d.ts.map +1 -0
- package/lib/browser/terminal-task-system.js +391 -0
- package/lib/browser/terminal-task-system.js.map +1 -0
- package/lib/common/index.d.ts +130 -0
- package/lib/common/index.d.ts.map +1 -0
- package/lib/common/index.js +7 -0
- package/lib/common/index.js.map +1 -0
- package/lib/common/task.d.ts +572 -0
- package/lib/common/task.d.ts.map +1 -0
- package/lib/common/task.js +523 -0
- package/lib/common/task.js.map +1 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +6 -0
- package/lib/index.js.map +1 -0
- package/lib/node/index.d.ts +6 -0
- package/lib/node/index.d.ts.map +1 -0
- package/lib/node/index.js +17 -0
- package/lib/node/index.js.map +1 -0
- package/package.json +33 -0
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
import { ProblemMatcherType, NamedProblemMatcher, IStringDictionary, IProblemMatcherRegistry, ITaskDefinitionRegistry, IProblemPatternRegistry, NamedProblemPattern } from '@opensumi/ide-core-common';
|
|
2
|
+
import { Platform } from '@opensumi/ide-core-common/lib/platform';
|
|
3
|
+
import { IWorkspaceFolder } from '../common';
|
|
4
|
+
import * as TaskTypes from '../common/task';
|
|
5
|
+
import { IProblemReporterBase, ValidationStatus, Config } from './parser';
|
|
6
|
+
export interface CommandOptionsConfig {
|
|
7
|
+
/**
|
|
8
|
+
* The current working directory of the executed program or shell.
|
|
9
|
+
* If omitted VSCode's current workspace root is used.
|
|
10
|
+
*/
|
|
11
|
+
cwd?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The additional environment of the executed program or shell. If omitted
|
|
14
|
+
* the parent process' environment is used.
|
|
15
|
+
*/
|
|
16
|
+
env?: IStringDictionary<string>;
|
|
17
|
+
/**
|
|
18
|
+
* The shell configuration;
|
|
19
|
+
*/
|
|
20
|
+
shell?: TaskTypes.ShellConfiguration;
|
|
21
|
+
}
|
|
22
|
+
export interface PresentationOptionsConfig {
|
|
23
|
+
/**
|
|
24
|
+
* Controls whether the task output is reveal in the user interface.
|
|
25
|
+
* Defaults to `RevealKind.Always`.
|
|
26
|
+
*/
|
|
27
|
+
reveal: TaskTypes.RevealKind;
|
|
28
|
+
/**
|
|
29
|
+
* Controls whether the problems pane is revealed when running this task or not.
|
|
30
|
+
* Defaults to `RevealProblemKind.Never`.
|
|
31
|
+
*/
|
|
32
|
+
revealProblems: TaskTypes.RevealProblemKind;
|
|
33
|
+
/**
|
|
34
|
+
* Controls whether the command associated with the task is echoed
|
|
35
|
+
* in the user interface.
|
|
36
|
+
*/
|
|
37
|
+
echo: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* Controls whether the panel showing the task output is taking focus.
|
|
40
|
+
*/
|
|
41
|
+
focus: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Controls if the task panel is used for this task only (dedicated),
|
|
44
|
+
* shared between tasks (shared) or if a new panel is created on
|
|
45
|
+
* every task execution (new). Defaults to `TaskInstanceKind.Shared`
|
|
46
|
+
*/
|
|
47
|
+
panel: TaskTypes.PanelKind;
|
|
48
|
+
/**
|
|
49
|
+
* Controls whether to show the "Terminal will be reused by tasks, press any key to close it" message.
|
|
50
|
+
*/
|
|
51
|
+
showReuseMessage: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Controls whether to clear the terminal before executing the task.
|
|
54
|
+
*/
|
|
55
|
+
clear: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* Controls whether the task is executed in a specific terminal group using split panes.
|
|
58
|
+
*/
|
|
59
|
+
group?: string;
|
|
60
|
+
}
|
|
61
|
+
export interface RunOptionsConfig {
|
|
62
|
+
reevaluateOnRerun?: boolean;
|
|
63
|
+
runOn?: string;
|
|
64
|
+
}
|
|
65
|
+
export interface TaskIdentifier {
|
|
66
|
+
type?: string;
|
|
67
|
+
[name: string]: any;
|
|
68
|
+
}
|
|
69
|
+
export declare namespace TaskIdentifier {
|
|
70
|
+
function is(value: any): value is TaskIdentifier;
|
|
71
|
+
}
|
|
72
|
+
export interface LegacyTaskProperties {
|
|
73
|
+
/**
|
|
74
|
+
* @deprecated Use `isBackground` instead.
|
|
75
|
+
* Whether the executed command is kept alive and is watching the file system.
|
|
76
|
+
*/
|
|
77
|
+
isWatching?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* @deprecated Use `group` instead.
|
|
80
|
+
* Whether this task maps to the default build command.
|
|
81
|
+
*/
|
|
82
|
+
isBuildCommand?: boolean;
|
|
83
|
+
/**
|
|
84
|
+
* @deprecated Use `group` instead.
|
|
85
|
+
* Whether this task maps to the default test command.
|
|
86
|
+
*/
|
|
87
|
+
isTestCommand?: boolean;
|
|
88
|
+
}
|
|
89
|
+
export interface LegacyCommandProperties {
|
|
90
|
+
/**
|
|
91
|
+
* Whether this is a shell or process
|
|
92
|
+
*/
|
|
93
|
+
type?: string;
|
|
94
|
+
/**
|
|
95
|
+
* @deprecated Use presentation options
|
|
96
|
+
* Controls whether the output view of the running tasks is brought to front or not.
|
|
97
|
+
* See BaseTaskRunnerConfiguration#showOutput for details.
|
|
98
|
+
*/
|
|
99
|
+
showOutput?: string;
|
|
100
|
+
/**
|
|
101
|
+
* @deprecated Use presentation options
|
|
102
|
+
* Controls whether the executed command is printed to the output windows as well.
|
|
103
|
+
*/
|
|
104
|
+
echoCommand?: boolean;
|
|
105
|
+
/**
|
|
106
|
+
* @deprecated Use presentation instead
|
|
107
|
+
*/
|
|
108
|
+
terminal?: PresentationOptionsConfig;
|
|
109
|
+
/**
|
|
110
|
+
* @deprecated Use inline commands.
|
|
111
|
+
* See BaseTaskRunnerConfiguration#suppressTaskName for details.
|
|
112
|
+
*/
|
|
113
|
+
suppressTaskName?: boolean;
|
|
114
|
+
/**
|
|
115
|
+
* Some commands require that the task argument is highlighted with a special
|
|
116
|
+
* prefix (e.g. /t: for msbuild). This property can be used to control such
|
|
117
|
+
* a prefix.
|
|
118
|
+
*/
|
|
119
|
+
taskSelector?: string;
|
|
120
|
+
/**
|
|
121
|
+
* @deprecated use the task type instead.
|
|
122
|
+
* Specifies whether the command is a shell command and therefore must
|
|
123
|
+
* be executed in a shell interpreter (e.g. cmd.exe, bash, ...).
|
|
124
|
+
*
|
|
125
|
+
* Defaults to false if omitted.
|
|
126
|
+
*/
|
|
127
|
+
isShellCommand?: boolean | TaskTypes.ShellConfiguration;
|
|
128
|
+
}
|
|
129
|
+
export declare type CommandString = string | string[] | {
|
|
130
|
+
value: string | string[];
|
|
131
|
+
quoting: 'escape' | 'strong' | 'weak';
|
|
132
|
+
};
|
|
133
|
+
export declare namespace CommandString {
|
|
134
|
+
function value(value: CommandString): string;
|
|
135
|
+
}
|
|
136
|
+
export interface BaseCommandProperties {
|
|
137
|
+
/**
|
|
138
|
+
* The command to be executed. Can be an external program or a shell
|
|
139
|
+
* command.
|
|
140
|
+
*/
|
|
141
|
+
command?: CommandString;
|
|
142
|
+
/**
|
|
143
|
+
* The command options used when the command is executed. Can be omitted.
|
|
144
|
+
*/
|
|
145
|
+
options?: CommandOptionsConfig;
|
|
146
|
+
/**
|
|
147
|
+
* The arguments passed to the command or additional arguments passed to the
|
|
148
|
+
* command when using a global command.
|
|
149
|
+
*/
|
|
150
|
+
args?: CommandString[];
|
|
151
|
+
}
|
|
152
|
+
export interface CommandProperties extends BaseCommandProperties {
|
|
153
|
+
/**
|
|
154
|
+
* Windows specific command properties
|
|
155
|
+
*/
|
|
156
|
+
windows?: BaseCommandProperties;
|
|
157
|
+
/**
|
|
158
|
+
* OSX specific command properties
|
|
159
|
+
*/
|
|
160
|
+
osx?: BaseCommandProperties;
|
|
161
|
+
/**
|
|
162
|
+
* linux specific command properties
|
|
163
|
+
*/
|
|
164
|
+
linux?: BaseCommandProperties;
|
|
165
|
+
}
|
|
166
|
+
export interface GroupKind {
|
|
167
|
+
kind?: string;
|
|
168
|
+
isDefault?: boolean;
|
|
169
|
+
}
|
|
170
|
+
export interface ConfigurationProperties {
|
|
171
|
+
/**
|
|
172
|
+
* The task's name
|
|
173
|
+
*/
|
|
174
|
+
taskName?: string;
|
|
175
|
+
/**
|
|
176
|
+
* The UI label used for the task.
|
|
177
|
+
*/
|
|
178
|
+
label?: string;
|
|
179
|
+
/**
|
|
180
|
+
* An optional identifier which can be used to reference a task
|
|
181
|
+
* in a dependsOn or other attributes.
|
|
182
|
+
*/
|
|
183
|
+
identifier?: string;
|
|
184
|
+
/**
|
|
185
|
+
* Whether the executed command is kept alive and runs in the background.
|
|
186
|
+
*/
|
|
187
|
+
isBackground?: boolean;
|
|
188
|
+
/**
|
|
189
|
+
* Whether the task should prompt on close for confirmation if running.
|
|
190
|
+
*/
|
|
191
|
+
promptOnClose?: boolean;
|
|
192
|
+
/**
|
|
193
|
+
* Defines the group the task belongs too.
|
|
194
|
+
*/
|
|
195
|
+
group?: string | GroupKind;
|
|
196
|
+
/**
|
|
197
|
+
* The other tasks the task depend on
|
|
198
|
+
*/
|
|
199
|
+
dependsOn?: string | TaskIdentifier | Array<string | TaskIdentifier>;
|
|
200
|
+
/**
|
|
201
|
+
* The order the dependsOn tasks should be executed in.
|
|
202
|
+
*/
|
|
203
|
+
dependsOrder?: string;
|
|
204
|
+
/**
|
|
205
|
+
* Controls the behavior of the used terminal
|
|
206
|
+
*/
|
|
207
|
+
presentation?: PresentationOptionsConfig;
|
|
208
|
+
/**
|
|
209
|
+
* Controls shell options.
|
|
210
|
+
*/
|
|
211
|
+
options?: CommandOptionsConfig;
|
|
212
|
+
/**
|
|
213
|
+
* The problem matcher(s) to use to capture problems in the tasks
|
|
214
|
+
* output.
|
|
215
|
+
*/
|
|
216
|
+
problemMatcher?: ProblemMatcherType;
|
|
217
|
+
/**
|
|
218
|
+
* Task run options. Control run related properties.
|
|
219
|
+
*/
|
|
220
|
+
runOptions?: RunOptionsConfig;
|
|
221
|
+
}
|
|
222
|
+
export interface CustomTask extends CommandProperties, ConfigurationProperties {
|
|
223
|
+
/**
|
|
224
|
+
* Custom tasks have the type CUSTOMIZED_TASK_TYPE
|
|
225
|
+
*/
|
|
226
|
+
type?: string;
|
|
227
|
+
}
|
|
228
|
+
export interface ConfiguringTask extends ConfigurationProperties {
|
|
229
|
+
/**
|
|
230
|
+
* The contributed type of the task
|
|
231
|
+
*/
|
|
232
|
+
type?: string;
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* The base task runner configuration
|
|
236
|
+
*/
|
|
237
|
+
export interface BaseTaskRunnerConfiguration {
|
|
238
|
+
/**
|
|
239
|
+
* The command to be executed. Can be an external program or a shell
|
|
240
|
+
* command.
|
|
241
|
+
*/
|
|
242
|
+
command?: CommandString;
|
|
243
|
+
/**
|
|
244
|
+
* @deprecated Use type instead
|
|
245
|
+
*
|
|
246
|
+
* Specifies whether the command is a shell command and therefore must
|
|
247
|
+
* be executed in a shell interpreter (e.g. cmd.exe, bash, ...).
|
|
248
|
+
*
|
|
249
|
+
* Defaults to false if omitted.
|
|
250
|
+
*/
|
|
251
|
+
isShellCommand?: boolean;
|
|
252
|
+
/**
|
|
253
|
+
* The task type
|
|
254
|
+
*/
|
|
255
|
+
type?: string;
|
|
256
|
+
/**
|
|
257
|
+
* The command options used when the command is executed. Can be omitted.
|
|
258
|
+
*/
|
|
259
|
+
options?: CommandOptionsConfig;
|
|
260
|
+
/**
|
|
261
|
+
* The arguments passed to the command. Can be omitted.
|
|
262
|
+
*/
|
|
263
|
+
args?: CommandString[];
|
|
264
|
+
/**
|
|
265
|
+
* Controls whether the output view of the running tasks is brought to front or not.
|
|
266
|
+
* Valid values are:
|
|
267
|
+
* "always": bring the output window always to front when a task is executed.
|
|
268
|
+
* "silent": only bring it to front if no problem matcher is defined for the task executed.
|
|
269
|
+
* "never": never bring the output window to front.
|
|
270
|
+
*
|
|
271
|
+
* If omitted "always" is used.
|
|
272
|
+
*/
|
|
273
|
+
showOutput?: string;
|
|
274
|
+
/**
|
|
275
|
+
* Controls whether the executed command is printed to the output windows as well.
|
|
276
|
+
*/
|
|
277
|
+
echoCommand?: boolean;
|
|
278
|
+
/**
|
|
279
|
+
* The group
|
|
280
|
+
*/
|
|
281
|
+
group?: string | GroupKind;
|
|
282
|
+
/**
|
|
283
|
+
* Controls the behavior of the used terminal
|
|
284
|
+
*/
|
|
285
|
+
presentation?: PresentationOptionsConfig;
|
|
286
|
+
/**
|
|
287
|
+
* If set to false the task name is added as an additional argument to the
|
|
288
|
+
* command when executed. If set to true the task name is suppressed. If
|
|
289
|
+
* omitted false is used.
|
|
290
|
+
*/
|
|
291
|
+
suppressTaskName?: boolean;
|
|
292
|
+
/**
|
|
293
|
+
* Some commands require that the task argument is highlighted with a special
|
|
294
|
+
* prefix (e.g. /t: for msbuild). This property can be used to control such
|
|
295
|
+
* a prefix.
|
|
296
|
+
*/
|
|
297
|
+
taskSelector?: string;
|
|
298
|
+
/**
|
|
299
|
+
* The problem matcher(s) to used if a global command is executed (e.g. no tasks
|
|
300
|
+
* are defined). A json file can either contain a global problemMatcher
|
|
301
|
+
* property or a tasks property but not both.
|
|
302
|
+
*/
|
|
303
|
+
problemMatcher?: ProblemMatcherType;
|
|
304
|
+
/**
|
|
305
|
+
* @deprecated Use `isBackground` instead.
|
|
306
|
+
*
|
|
307
|
+
* Specifies whether a global command is a watching the filesystem. A task.json
|
|
308
|
+
* file can either contain a global isWatching property or a tasks property
|
|
309
|
+
* but not both.
|
|
310
|
+
*/
|
|
311
|
+
isWatching?: boolean;
|
|
312
|
+
/**
|
|
313
|
+
* Specifies whether a global command is a background task.
|
|
314
|
+
*/
|
|
315
|
+
isBackground?: boolean;
|
|
316
|
+
/**
|
|
317
|
+
* Whether the task should prompt on close for confirmation if running.
|
|
318
|
+
*/
|
|
319
|
+
promptOnClose?: boolean;
|
|
320
|
+
/**
|
|
321
|
+
* The configuration of the available A json file can either
|
|
322
|
+
* contain a global problemMatcher property or a tasks property but not both.
|
|
323
|
+
*/
|
|
324
|
+
tasks?: Array<CustomTask | ConfiguringTask>;
|
|
325
|
+
/**
|
|
326
|
+
* Problem matcher declarations.
|
|
327
|
+
*/
|
|
328
|
+
declares?: Config.NamedProblemMatcher[];
|
|
329
|
+
/**
|
|
330
|
+
* Optional user input variables.
|
|
331
|
+
*/
|
|
332
|
+
inputs?: any[];
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* A configuration of an external build system. BuildConfiguration.buildSystem
|
|
336
|
+
* must be set to 'program'
|
|
337
|
+
*/
|
|
338
|
+
export interface ExternalTaskRunnerConfiguration extends BaseTaskRunnerConfiguration {
|
|
339
|
+
_runner?: string;
|
|
340
|
+
/**
|
|
341
|
+
* Determines the runner to use
|
|
342
|
+
*/
|
|
343
|
+
runner?: string;
|
|
344
|
+
/**
|
|
345
|
+
* The config's version number
|
|
346
|
+
*/
|
|
347
|
+
version: string;
|
|
348
|
+
/**
|
|
349
|
+
* Windows specific task configuration
|
|
350
|
+
*/
|
|
351
|
+
windows?: BaseTaskRunnerConfiguration;
|
|
352
|
+
/**
|
|
353
|
+
* Mac specific task configuration
|
|
354
|
+
*/
|
|
355
|
+
osx?: BaseTaskRunnerConfiguration;
|
|
356
|
+
/**
|
|
357
|
+
* Linux specific task configuration
|
|
358
|
+
*/
|
|
359
|
+
linux?: BaseTaskRunnerConfiguration;
|
|
360
|
+
}
|
|
361
|
+
export declare namespace RunOnOptions {
|
|
362
|
+
function fromString(value: string | undefined): TaskTypes.RunOnOptions;
|
|
363
|
+
}
|
|
364
|
+
export declare namespace RunOptions {
|
|
365
|
+
function fromConfiguration(value: RunOptionsConfig | undefined): TaskTypes.RunOptions;
|
|
366
|
+
}
|
|
367
|
+
export declare type getProblemMatcherFn = (name: string) => NamedProblemMatcher | undefined;
|
|
368
|
+
export declare type getProblemPatternFn = (name: string) => undefined | NamedProblemPattern | NamedProblemPattern[];
|
|
369
|
+
export declare namespace ExecutionEngine {
|
|
370
|
+
function from(config: ExternalTaskRunnerConfiguration): TaskTypes.ExecutionEngine;
|
|
371
|
+
}
|
|
372
|
+
export declare namespace JsonSchemaVersion {
|
|
373
|
+
function from(config: ExternalTaskRunnerConfiguration): TaskTypes.JsonSchemaVersion;
|
|
374
|
+
}
|
|
375
|
+
export interface ParseResult {
|
|
376
|
+
validationStatus: ValidationStatus;
|
|
377
|
+
custom: TaskTypes.CustomTask[];
|
|
378
|
+
configured: TaskTypes.ConfiguringTask[];
|
|
379
|
+
engine: TaskTypes.ExecutionEngine;
|
|
380
|
+
}
|
|
381
|
+
export interface IProblemReporter extends IProblemReporterBase {
|
|
382
|
+
}
|
|
383
|
+
export declare function parse(workspaceFolder: IWorkspaceFolder, platform: Platform, configuration: ExternalTaskRunnerConfiguration, logger: IProblemReporter, taskDefinitionRegister: ITaskDefinitionRegistry, problemMatcherRegister: IProblemMatcherRegistry, problemPatternRegister: IProblemPatternRegistry): ParseResult;
|
|
384
|
+
export declare function createCustomTask(contributedTask: TaskTypes.ContributedTask, configuredProps: TaskTypes.ConfiguringTask | TaskTypes.CustomTask): TaskTypes.CustomTask;
|
|
385
|
+
//# sourceMappingURL=task-config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-config.d.ts","sourceRoot":"","sources":["../../src/browser/task-config.ts"],"names":[],"mappings":"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"}
|