@theia/task 1.65.0-next.6 → 1.65.1
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/quick-open-task.d.ts +4 -3
- package/lib/browser/quick-open-task.d.ts.map +1 -1
- package/lib/browser/quick-open-task.js +36 -24
- package/lib/browser/quick-open-task.js.map +1 -1
- package/lib/browser/task-configuration-manager.d.ts +5 -7
- package/lib/browser/task-configuration-manager.d.ts.map +1 -1
- package/lib/browser/task-configuration-manager.js +18 -29
- package/lib/browser/task-configuration-manager.js.map +1 -1
- package/lib/browser/task-configuration-model.d.ts +5 -4
- package/lib/browser/task-configuration-model.d.ts.map +1 -1
- package/lib/browser/task-configuration-model.js +16 -13
- package/lib/browser/task-configuration-model.js.map +1 -1
- package/lib/browser/task-frontend-module.js +1 -1
- package/lib/browser/task-frontend-module.js.map +1 -1
- package/lib/browser/task-problem-matcher-registry.d.ts.map +1 -1
- package/lib/browser/task-problem-matcher-registry.js +8 -8
- package/lib/browser/task-problem-matcher-registry.js.map +1 -1
- package/lib/browser/task-schema-updater.d.ts +0 -1
- package/lib/browser/task-schema-updater.d.ts.map +1 -1
- package/lib/browser/task-schema-updater.js +87 -88
- package/lib/browser/task-schema-updater.js.map +1 -1
- package/lib/browser/task-service.d.ts.map +1 -1
- package/lib/browser/task-service.js +20 -21
- package/lib/browser/task-service.js.map +1 -1
- package/lib/browser/task-templates.d.ts.map +1 -1
- package/lib/browser/task-templates.js +5 -4
- package/lib/browser/task-templates.js.map +1 -1
- package/lib/browser/task-terminal-widget-manager.d.ts.map +1 -1
- package/lib/browser/task-terminal-widget-manager.js +3 -2
- package/lib/browser/task-terminal-widget-manager.js.map +1 -1
- package/lib/common/task-preferences.d.ts +6 -0
- package/lib/common/task-preferences.d.ts.map +1 -0
- package/lib/{browser → common}/task-preferences.js +9 -9
- package/lib/common/task-preferences.js.map +1 -0
- package/lib/node/task-backend-module.d.ts.map +1 -1
- package/lib/node/task-backend-module.js +2 -0
- package/lib/node/task-backend-module.js.map +1 -1
- package/lib/node/task-server.slow-spec.js +7 -3
- package/lib/node/task-server.slow-spec.js.map +1 -1
- package/package.json +13 -13
- package/src/browser/quick-open-task.ts +35 -24
- package/src/browser/task-configuration-manager.ts +15 -20
- package/src/browser/task-configuration-model.ts +18 -15
- package/src/browser/task-frontend-module.ts +1 -1
- package/src/browser/task-problem-matcher-registry.ts +9 -9
- package/src/browser/task-schema-updater.ts +91 -87
- package/src/browser/task-service.ts +21 -22
- package/src/browser/task-templates.ts +5 -4
- package/src/browser/task-terminal-widget-manager.ts +3 -2
- package/src/{browser → common}/task-preferences.ts +7 -6
- package/src/node/task-backend-module.ts +2 -0
- package/src/node/task-server.slow-spec.ts +8 -3
- package/lib/browser/task-preferences.d.ts +0 -5
- package/lib/browser/task-preferences.d.ts.map +0 -1
- package/lib/browser/task-preferences.js.map +0 -1
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
22
22
|
*--------------------------------------------------------------------------------------------*/
|
|
23
23
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
|
-
exports.TaskSchemaUpdater =
|
|
24
|
+
exports.TaskSchemaUpdater = void 0;
|
|
25
25
|
const tslib_1 = require("tslib");
|
|
26
26
|
const Ajv = require("@theia/core/shared/ajv");
|
|
27
27
|
const debounce = require("p-debounce");
|
|
@@ -35,12 +35,12 @@ const task_definition_registry_1 = require("./task-definition-registry");
|
|
|
35
35
|
const common_2 = require("../common");
|
|
36
36
|
const browser_1 = require("@theia/userstorage/lib/browser");
|
|
37
37
|
const browser_2 = require("@theia/workspace/lib/browser");
|
|
38
|
-
|
|
38
|
+
const task_preferences_1 = require("../common/task-preferences");
|
|
39
39
|
let TaskSchemaUpdater = class TaskSchemaUpdater {
|
|
40
40
|
constructor() {
|
|
41
41
|
this.onDidChangeTaskSchemaEmitter = new common_1.Emitter();
|
|
42
42
|
this.onDidChangeTaskSchema = this.onDidChangeTaskSchemaEmitter.event;
|
|
43
|
-
this.uri = new uri_1.default(
|
|
43
|
+
this.uri = new uri_1.default(task_preferences_1.taskSchemaId);
|
|
44
44
|
this.update = debounce(() => this.doUpdate(), 0);
|
|
45
45
|
}
|
|
46
46
|
init() {
|
|
@@ -131,7 +131,7 @@ let TaskSchemaUpdater = class TaskSchemaUpdater {
|
|
|
131
131
|
...defaultTaskType,
|
|
132
132
|
enum: [def.taskType],
|
|
133
133
|
default: def.taskType,
|
|
134
|
-
description: 'The task type to customize'
|
|
134
|
+
description: common_1.nls.localizeByDefault('The task type to customize')
|
|
135
135
|
};
|
|
136
136
|
customizedDetectedTask.properties.type = taskType;
|
|
137
137
|
const required = def.properties.required || [];
|
|
@@ -159,13 +159,15 @@ let TaskSchemaUpdater = class TaskSchemaUpdater {
|
|
|
159
159
|
properties: {
|
|
160
160
|
version: {
|
|
161
161
|
type: 'string',
|
|
162
|
-
default: '2.0.0'
|
|
162
|
+
default: '2.0.0',
|
|
163
|
+
description: common_1.nls.localizeByDefault("The config's version number.")
|
|
163
164
|
},
|
|
164
165
|
tasks: {
|
|
165
166
|
type: 'array',
|
|
166
167
|
items: {
|
|
167
168
|
...(0, common_1.deepClone)(taskConfigurationSchema)
|
|
168
|
-
}
|
|
169
|
+
},
|
|
170
|
+
description: common_1.nls.localizeByDefault('The task configurations. Usually these are enrichments of task already defined in the external task runner.')
|
|
169
171
|
},
|
|
170
172
|
inputs: variable_input_schema_1.inputsSchema.definitions.inputs
|
|
171
173
|
},
|
|
@@ -218,40 +220,39 @@ exports.TaskSchemaUpdater = TaskSchemaUpdater = tslib_1.__decorate([
|
|
|
218
220
|
], TaskSchemaUpdater);
|
|
219
221
|
const commandSchema = {
|
|
220
222
|
type: 'string',
|
|
221
|
-
description: 'The
|
|
223
|
+
description: common_1.nls.localizeByDefault('The command to be executed. Can be an external program or a shell command.')
|
|
222
224
|
};
|
|
223
225
|
const commandArgSchema = {
|
|
224
226
|
type: 'array',
|
|
225
|
-
description: '
|
|
227
|
+
description: common_1.nls.localizeByDefault('Arguments passed to the command when this task is invoked.'),
|
|
226
228
|
items: {
|
|
227
229
|
type: 'string'
|
|
228
230
|
}
|
|
229
231
|
};
|
|
230
232
|
const commandOptionsSchema = {
|
|
231
233
|
type: 'object',
|
|
232
|
-
description: '
|
|
234
|
+
description: common_1.nls.localizeByDefault('Additional command options'),
|
|
233
235
|
properties: {
|
|
234
236
|
cwd: {
|
|
235
237
|
type: 'string',
|
|
236
|
-
description: 'The directory
|
|
238
|
+
description: common_1.nls.localize('theia/task/schema/commandOptions/cwd', "The current working directory of the executed program or script. If omitted Theia's current workspace root is used."),
|
|
237
239
|
default: '${workspaceFolder}'
|
|
238
240
|
},
|
|
239
241
|
env: {
|
|
240
242
|
type: 'object',
|
|
241
|
-
description:
|
|
243
|
+
description: common_1.nls.localizeByDefault("The environment of the executed program or shell. If omitted the parent process' environment is used.")
|
|
242
244
|
},
|
|
243
245
|
shell: {
|
|
244
246
|
type: 'object',
|
|
245
|
-
description: '
|
|
247
|
+
description: common_1.nls.localizeByDefault('Configures the shell to be used.'),
|
|
246
248
|
properties: {
|
|
247
249
|
executable: {
|
|
248
250
|
type: 'string',
|
|
249
|
-
description: 'The shell to
|
|
251
|
+
description: common_1.nls.localizeByDefault('The shell to be used.')
|
|
250
252
|
},
|
|
251
253
|
args: {
|
|
252
254
|
type: 'array',
|
|
253
|
-
description:
|
|
254
|
-
(e.g ['-c'] for bash or ['/S', '/C'] for cmd.exe)`,
|
|
255
|
+
description: common_1.nls.localizeByDefault('The shell arguments.'),
|
|
255
256
|
items: {
|
|
256
257
|
type: 'string'
|
|
257
258
|
}
|
|
@@ -265,13 +266,13 @@ const defaultTaskTypes = ['shell', 'process'];
|
|
|
265
266
|
const supportedTaskTypes = [...defaultTaskTypes];
|
|
266
267
|
const taskLabel = {
|
|
267
268
|
type: 'string',
|
|
268
|
-
description:
|
|
269
|
+
description: common_1.nls.localizeByDefault("The task's user interface label")
|
|
269
270
|
};
|
|
270
271
|
const defaultTaskType = {
|
|
271
272
|
type: 'string',
|
|
272
273
|
enum: supportedTaskTypes,
|
|
273
274
|
default: defaultTaskTypes[0],
|
|
274
|
-
description: '
|
|
275
|
+
description: common_1.nls.localizeByDefault('Defines whether the task is run as a process or as a command inside a shell.')
|
|
275
276
|
};
|
|
276
277
|
const commandAndArgs = {
|
|
277
278
|
command: commandSchema,
|
|
@@ -284,9 +285,9 @@ const group = {
|
|
|
284
285
|
type: 'string',
|
|
285
286
|
enum: ['build', 'test', 'none'],
|
|
286
287
|
enumDescriptions: [
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
'Assigns the task to no group'
|
|
288
|
+
common_1.nls.localizeByDefault("Marks the task as a build task accessible through the 'Run Build Task' command."),
|
|
289
|
+
common_1.nls.localizeByDefault("Marks the task as a test task accessible through the 'Run Test Task' command."),
|
|
290
|
+
common_1.nls.localizeByDefault('Assigns the task to no group')
|
|
290
291
|
]
|
|
291
292
|
},
|
|
292
293
|
{
|
|
@@ -295,24 +296,23 @@ const group = {
|
|
|
295
296
|
kind: {
|
|
296
297
|
type: 'string',
|
|
297
298
|
default: 'none',
|
|
298
|
-
description:
|
|
299
|
+
description: common_1.nls.localizeByDefault("The task's execution group."),
|
|
299
300
|
enum: ['build', 'test', 'none'],
|
|
300
301
|
enumDescriptions: [
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
'Assigns the task to no group'
|
|
302
|
+
common_1.nls.localizeByDefault("Marks the task as a build task accessible through the 'Run Build Task' command."),
|
|
303
|
+
common_1.nls.localizeByDefault("Marks the task as a test task accessible through the 'Run Test Task' command."),
|
|
304
|
+
common_1.nls.localizeByDefault('Assigns the task to no group')
|
|
304
305
|
]
|
|
305
306
|
},
|
|
306
307
|
isDefault: {
|
|
307
308
|
type: 'boolean',
|
|
308
309
|
default: false,
|
|
309
|
-
description: 'Defines if this task is the default task in the group.'
|
|
310
|
+
description: common_1.nls.localizeByDefault('Defines if this task is the default task in the group, or a glob to match the file which should trigger this task.')
|
|
310
311
|
}
|
|
311
312
|
}
|
|
312
313
|
}
|
|
313
314
|
],
|
|
314
|
-
|
|
315
|
-
description: 'Defines to which execution group this task belongs to. It supports "build" to add it to the build group and "test" to add it to the test group.'
|
|
315
|
+
description: common_1.nls.localizeByDefault('Defines to which execution group this task belongs to. It supports "build" to add it to the build group and "test" to add it to the test group.')
|
|
316
316
|
};
|
|
317
317
|
const problemPattern = {
|
|
318
318
|
default: {
|
|
@@ -325,53 +325,53 @@ const problemPattern = {
|
|
|
325
325
|
properties: {
|
|
326
326
|
regexp: {
|
|
327
327
|
type: 'string',
|
|
328
|
-
description: 'The regular expression to find an error, warning or info in the output.'
|
|
328
|
+
description: common_1.nls.localizeByDefault('The regular expression to find an error, warning or info in the output.')
|
|
329
329
|
},
|
|
330
330
|
kind: {
|
|
331
331
|
type: 'string',
|
|
332
|
-
description: 'whether the pattern matches a location (file and line) or only a file.'
|
|
332
|
+
description: common_1.nls.localizeByDefault('whether the pattern matches a location (file and line) or only a file.')
|
|
333
333
|
},
|
|
334
334
|
file: {
|
|
335
335
|
type: 'integer',
|
|
336
|
-
description: 'The match group index of the filename. If omitted 1 is used.'
|
|
336
|
+
description: common_1.nls.localizeByDefault('The match group index of the filename. If omitted 1 is used.')
|
|
337
337
|
},
|
|
338
338
|
location: {
|
|
339
339
|
type: 'integer',
|
|
340
340
|
// eslint-disable-next-line max-len
|
|
341
|
-
description:
|
|
341
|
+
description: common_1.nls.localizeByDefault("The match group index of the problem's location. Valid location patterns are: (line), (line,column) and (startLine,startColumn,endLine,endColumn). If omitted (line,column) is assumed.")
|
|
342
342
|
},
|
|
343
343
|
line: {
|
|
344
344
|
type: 'integer',
|
|
345
|
-
description:
|
|
345
|
+
description: common_1.nls.localizeByDefault("The match group index of the problem's line. Defaults to 2")
|
|
346
346
|
},
|
|
347
347
|
column: {
|
|
348
348
|
type: 'integer',
|
|
349
|
-
description:
|
|
349
|
+
description: common_1.nls.localizeByDefault("The match group index of the problem's line character. Defaults to 3")
|
|
350
350
|
},
|
|
351
351
|
endLine: {
|
|
352
352
|
type: 'integer',
|
|
353
|
-
description:
|
|
353
|
+
description: common_1.nls.localizeByDefault("The match group index of the problem's end line. Defaults to undefined")
|
|
354
354
|
},
|
|
355
355
|
endColumn: {
|
|
356
356
|
type: 'integer',
|
|
357
|
-
description:
|
|
357
|
+
description: common_1.nls.localizeByDefault("The match group index of the problem's end line character. Defaults to undefined")
|
|
358
358
|
},
|
|
359
359
|
severity: {
|
|
360
360
|
type: 'integer',
|
|
361
|
-
description:
|
|
361
|
+
description: common_1.nls.localizeByDefault("The match group index of the problem's severity. Defaults to undefined")
|
|
362
362
|
},
|
|
363
363
|
code: {
|
|
364
364
|
type: 'integer',
|
|
365
|
-
description:
|
|
365
|
+
description: common_1.nls.localizeByDefault("The match group index of the problem's code. Defaults to undefined")
|
|
366
366
|
},
|
|
367
367
|
message: {
|
|
368
368
|
type: 'integer',
|
|
369
|
-
description: 'The match group index of the message. If omitted it defaults to 4 if location is specified. Otherwise it defaults to 5.'
|
|
369
|
+
description: common_1.nls.localizeByDefault('The match group index of the message. If omitted it defaults to 4 if location is specified. Otherwise it defaults to 5.')
|
|
370
370
|
},
|
|
371
371
|
loop: {
|
|
372
372
|
type: 'boolean',
|
|
373
373
|
// eslint-disable-next-line max-len
|
|
374
|
-
description: 'In a multi line matcher loop indicated whether this pattern is executed in a loop as long as it matches. Can only specified on a last pattern in a multi line pattern.'
|
|
374
|
+
description: common_1.nls.localizeByDefault('In a multi line matcher loop indicated whether this pattern is executed in a loop as long as it matches. Can only specified on a last pattern in a multi line pattern.')
|
|
375
375
|
}
|
|
376
376
|
}
|
|
377
377
|
};
|
|
@@ -385,11 +385,11 @@ const watchingPattern = {
|
|
|
385
385
|
properties: {
|
|
386
386
|
regexp: {
|
|
387
387
|
type: 'string',
|
|
388
|
-
description: 'The regular expression to detect the begin or end of a background task.'
|
|
388
|
+
description: common_1.nls.localizeByDefault('The regular expression to detect the begin or end of a background task.')
|
|
389
389
|
},
|
|
390
390
|
file: {
|
|
391
391
|
type: 'integer',
|
|
392
|
-
description: 'The match group index of the filename. Can be omitted.'
|
|
392
|
+
description: common_1.nls.localizeByDefault('The match group index of the filename. Can be omitted.')
|
|
393
393
|
},
|
|
394
394
|
}
|
|
395
395
|
};
|
|
@@ -397,12 +397,12 @@ const patternType = {
|
|
|
397
397
|
anyOf: [
|
|
398
398
|
{
|
|
399
399
|
type: 'string',
|
|
400
|
-
description: 'The name of a contributed or predefined pattern'
|
|
400
|
+
description: common_1.nls.localizeByDefault('The name of a contributed or predefined pattern')
|
|
401
401
|
},
|
|
402
402
|
problemPattern,
|
|
403
403
|
multiLineProblemPattern
|
|
404
404
|
],
|
|
405
|
-
description: 'A problem pattern or the name of a contributed or predefined problem pattern. Can be omitted if base is specified.'
|
|
405
|
+
description: common_1.nls.localizeByDefault('A problem pattern or the name of a contributed or predefined problem pattern. Can be omitted if base is specified.')
|
|
406
406
|
};
|
|
407
407
|
const problemMatcherObject = {
|
|
408
408
|
type: 'object',
|
|
@@ -410,25 +410,25 @@ const problemMatcherObject = {
|
|
|
410
410
|
base: {
|
|
411
411
|
type: 'string',
|
|
412
412
|
enum: problemMatcherNames,
|
|
413
|
-
description: 'The name of a base problem matcher to use.'
|
|
413
|
+
description: common_1.nls.localizeByDefault('The name of a base problem matcher to use.')
|
|
414
414
|
},
|
|
415
415
|
owner: {
|
|
416
416
|
type: 'string',
|
|
417
|
-
description: 'The owner of the problem inside
|
|
417
|
+
description: common_1.nls.localize('theia/task/schema/problemMatcherObject/owner', "The owner of the problem inside Theia. Can be omitted if base is specified. Defaults to 'external' if omitted and base is not specified.")
|
|
418
418
|
},
|
|
419
419
|
source: {
|
|
420
420
|
type: 'string',
|
|
421
|
-
description:
|
|
421
|
+
description: common_1.nls.localizeByDefault("A human-readable string describing the source of this diagnostic, e.g. 'typescript' or 'super lint'.")
|
|
422
422
|
},
|
|
423
423
|
severity: {
|
|
424
424
|
type: 'string',
|
|
425
425
|
enum: ['error', 'warning', 'info'],
|
|
426
|
-
description:
|
|
426
|
+
description: common_1.nls.localizeByDefault("The default severity for captures problems. Is used if the pattern doesn't define a match group for severity.")
|
|
427
427
|
},
|
|
428
428
|
applyTo: {
|
|
429
429
|
type: 'string',
|
|
430
430
|
enum: ['allDocuments', 'openDocuments', 'closedDocuments'],
|
|
431
|
-
description: 'Controls if a problem reported on a text document is applied only to open, closed or all documents.'
|
|
431
|
+
description: common_1.nls.localizeByDefault('Controls if a problem reported on a text document is applied only to open, closed or all documents.')
|
|
432
432
|
},
|
|
433
433
|
pattern: patternType,
|
|
434
434
|
fileLocation: {
|
|
@@ -444,16 +444,17 @@ const problemMatcherObject = {
|
|
|
444
444
|
}
|
|
445
445
|
}
|
|
446
446
|
],
|
|
447
|
-
|
|
447
|
+
// eslint-disable-next-line max-len
|
|
448
|
+
description: common_1.nls.localizeByDefault('Defines how file names reported in a problem pattern should be interpreted. A relative fileLocation may be an array, where the second element of the array is the path of the relative file location. The search fileLocation mode, performs a deep (and, possibly, heavy) file system search within the directories specified by the include/exclude properties of the second element (or the current workspace directory if not specified).')
|
|
448
449
|
},
|
|
449
450
|
background: {
|
|
450
451
|
type: 'object',
|
|
451
452
|
additionalProperties: false,
|
|
452
|
-
description: 'Patterns to track the begin and end of a matcher active on a background task.',
|
|
453
|
+
description: common_1.nls.localizeByDefault('Patterns to track the begin and end of a matcher active on a background task.'),
|
|
453
454
|
properties: {
|
|
454
455
|
activeOnStart: {
|
|
455
456
|
type: 'boolean',
|
|
456
|
-
description: 'If set to true the background monitor
|
|
457
|
+
description: common_1.nls.localizeByDefault('If set to true the background monitor starts in active mode. This is the same as outputting a line that matches beginsPattern when the task starts.')
|
|
457
458
|
},
|
|
458
459
|
beginsPattern: {
|
|
459
460
|
oneOf: [
|
|
@@ -462,7 +463,7 @@ const problemMatcherObject = {
|
|
|
462
463
|
},
|
|
463
464
|
watchingPattern
|
|
464
465
|
],
|
|
465
|
-
description: 'If matched in the output the start of a background task is signaled.'
|
|
466
|
+
description: common_1.nls.localizeByDefault('If matched in the output the start of a background task is signaled.')
|
|
466
467
|
},
|
|
467
468
|
endsPattern: {
|
|
468
469
|
oneOf: [
|
|
@@ -471,19 +472,19 @@ const problemMatcherObject = {
|
|
|
471
472
|
},
|
|
472
473
|
watchingPattern
|
|
473
474
|
],
|
|
474
|
-
description: 'If matched in the output the end of a background task is signaled.'
|
|
475
|
+
description: common_1.nls.localizeByDefault('If matched in the output the end of a background task is signaled.')
|
|
475
476
|
}
|
|
476
477
|
}
|
|
477
478
|
},
|
|
478
479
|
watching: {
|
|
479
480
|
type: 'object',
|
|
480
481
|
additionalProperties: false,
|
|
481
|
-
deprecationMessage: 'The watching property is deprecated. Use background instead.',
|
|
482
|
-
description: 'Patterns to track the begin and end of a watching matcher.',
|
|
482
|
+
deprecationMessage: common_1.nls.localizeByDefault('The watching property is deprecated. Use background instead.'),
|
|
483
|
+
description: common_1.nls.localizeByDefault('Patterns to track the begin and end of a watching matcher.'),
|
|
483
484
|
properties: {
|
|
484
485
|
activeOnStart: {
|
|
485
486
|
type: 'boolean',
|
|
486
|
-
description: 'If set to true the watcher
|
|
487
|
+
description: common_1.nls.localizeByDefault('If set to true the watcher starts in active mode. This is the same as outputting a line that matches beginsPattern when the task starts.')
|
|
487
488
|
},
|
|
488
489
|
beginsPattern: {
|
|
489
490
|
oneOf: [
|
|
@@ -492,7 +493,7 @@ const problemMatcherObject = {
|
|
|
492
493
|
},
|
|
493
494
|
watchingPattern
|
|
494
495
|
],
|
|
495
|
-
description: 'If matched in the output the start of a watching task is signaled.'
|
|
496
|
+
description: common_1.nls.localizeByDefault('If matched in the output the start of a watching task is signaled.')
|
|
496
497
|
},
|
|
497
498
|
endsPattern: {
|
|
498
499
|
oneOf: [
|
|
@@ -501,7 +502,7 @@ const problemMatcherObject = {
|
|
|
501
502
|
},
|
|
502
503
|
watchingPattern
|
|
503
504
|
],
|
|
504
|
-
description: 'If matched in the output the end of a watching task is signaled.'
|
|
505
|
+
description: common_1.nls.localizeByDefault('If matched in the output the end of a watching task is signaled.')
|
|
505
506
|
}
|
|
506
507
|
}
|
|
507
508
|
}
|
|
@@ -511,12 +512,10 @@ const problemMatcher = {
|
|
|
511
512
|
anyOf: [
|
|
512
513
|
{
|
|
513
514
|
type: 'string',
|
|
514
|
-
description: 'Name of the problem matcher to parse the output of the task',
|
|
515
515
|
enum: problemMatcherNames
|
|
516
516
|
},
|
|
517
517
|
{
|
|
518
518
|
type: 'array',
|
|
519
|
-
description: 'Name(s) of the problem matcher(s) to parse the output of the task',
|
|
520
519
|
items: {
|
|
521
520
|
type: 'string',
|
|
522
521
|
enum: problemMatcherNames
|
|
@@ -525,10 +524,10 @@ const problemMatcher = {
|
|
|
525
524
|
problemMatcherObject,
|
|
526
525
|
{
|
|
527
526
|
type: 'array',
|
|
528
|
-
description: 'User defined problem matcher(s) to parse the output of the task',
|
|
529
527
|
items: problemMatcherObject
|
|
530
528
|
}
|
|
531
|
-
]
|
|
529
|
+
],
|
|
530
|
+
description: common_1.nls.localizeByDefault('The problem matcher(s) to use. Can either be a string or a problem matcher definition or an array of strings and problem matchers.')
|
|
532
531
|
};
|
|
533
532
|
const presentation = {
|
|
534
533
|
type: 'object',
|
|
@@ -540,57 +539,57 @@ const presentation = {
|
|
|
540
539
|
showReuseMessage: true,
|
|
541
540
|
clear: false
|
|
542
541
|
},
|
|
543
|
-
description:
|
|
542
|
+
description: common_1.nls.localizeByDefault("Configures the panel that is used to present the task's output and reads its input."),
|
|
544
543
|
additionalProperties: true,
|
|
545
544
|
properties: {
|
|
546
545
|
echo: {
|
|
547
546
|
type: 'boolean',
|
|
548
547
|
default: true,
|
|
549
|
-
description: 'Controls whether the executed command is echoed to the panel. Default is true.'
|
|
548
|
+
description: common_1.nls.localizeByDefault('Controls whether the executed command is echoed to the panel. Default is true.')
|
|
550
549
|
},
|
|
551
550
|
focus: {
|
|
552
551
|
type: 'boolean',
|
|
553
552
|
default: false,
|
|
554
|
-
description: 'Controls whether the panel takes focus. Default is false. If set to true the panel is revealed as well.'
|
|
553
|
+
description: common_1.nls.localizeByDefault('Controls whether the panel takes focus. Default is false. If set to true the panel is revealed as well.')
|
|
555
554
|
},
|
|
556
555
|
reveal: {
|
|
557
556
|
type: 'string',
|
|
558
557
|
enum: ['always', 'silent', 'never'],
|
|
559
558
|
enumDescriptions: [
|
|
560
|
-
'Always reveals the terminal when this task is executed.',
|
|
561
|
-
'Only reveals the terminal if the task exits with an error or the problem matcher finds an error.',
|
|
562
|
-
'Never reveals the terminal when this task is executed.'
|
|
559
|
+
common_1.nls.localizeByDefault('Always reveals the terminal when this task is executed.'),
|
|
560
|
+
common_1.nls.localizeByDefault('Only reveals the terminal if the task exits with an error or the problem matcher finds an error.'),
|
|
561
|
+
common_1.nls.localizeByDefault('Never reveals the terminal when this task is executed.')
|
|
563
562
|
],
|
|
564
563
|
default: 'always',
|
|
565
|
-
description: 'Controls whether the terminal running the task is revealed or not. May be overridden by option
|
|
564
|
+
description: common_1.nls.localizeByDefault('Controls whether the terminal running the task is revealed or not. May be overridden by option "revealProblems". Default is "always".')
|
|
566
565
|
},
|
|
567
566
|
panel: {
|
|
568
567
|
type: 'string',
|
|
569
568
|
enum: ['shared', 'dedicated', 'new'],
|
|
570
569
|
enumDescriptions: [
|
|
571
|
-
'The terminal is shared and the output of other task runs are added to the same terminal.',
|
|
570
|
+
common_1.nls.localize('theia/task/schema/presentation/panel/shared', 'The terminal is shared and the output of other task runs are added to the same terminal.'),
|
|
572
571
|
// eslint-disable-next-line max-len
|
|
573
|
-
'The terminal is dedicated to a specific task. If that task is executed again, the terminal is reused. However, the output of a different task is presented in a different terminal.',
|
|
574
|
-
'Every execution of that task is using a new clean terminal.'
|
|
572
|
+
common_1.nls.localize('theia/task/schema/presentation/panel/dedicated', 'The terminal is dedicated to a specific task. If that task is executed again, the terminal is reused. However, the output of a different task is presented in a different terminal.'),
|
|
573
|
+
common_1.nls.localize('theia/task/schema/presentation/panel/new', 'Every execution of that task is using a new clean terminal.')
|
|
575
574
|
],
|
|
576
575
|
default: 'shared',
|
|
577
|
-
description: 'Controls if the panel is shared between tasks, dedicated to this task or a new one is created on every run.'
|
|
576
|
+
description: common_1.nls.localizeByDefault('Controls if the panel is shared between tasks, dedicated to this task or a new one is created on every run.')
|
|
578
577
|
},
|
|
579
578
|
showReuseMessage: {
|
|
580
579
|
type: 'boolean',
|
|
581
580
|
default: true,
|
|
582
|
-
description: 'Controls whether to show the "Terminal will be reused by tasks" message.'
|
|
581
|
+
description: common_1.nls.localize('theia/task/schema/presentation/showReuseMessage', 'Controls whether to show the "Terminal will be reused by tasks" message.')
|
|
583
582
|
},
|
|
584
583
|
clear: {
|
|
585
584
|
type: 'boolean',
|
|
586
585
|
default: false,
|
|
587
|
-
description: 'Controls whether the terminal is cleared before
|
|
586
|
+
description: common_1.nls.localizeByDefault('Controls whether the terminal is cleared before executing the task.')
|
|
588
587
|
}
|
|
589
588
|
}
|
|
590
589
|
};
|
|
591
590
|
const detail = {
|
|
592
591
|
type: 'string',
|
|
593
|
-
description: 'An optional description of a task that shows in the Run Task quick pick as a detail.'
|
|
592
|
+
description: common_1.nls.localizeByDefault('An optional description of a task that shows in the Run Task quick pick as a detail.')
|
|
594
593
|
};
|
|
595
594
|
const taskIdentifier = {
|
|
596
595
|
type: 'object',
|
|
@@ -598,7 +597,7 @@ const taskIdentifier = {
|
|
|
598
597
|
properties: {
|
|
599
598
|
type: {
|
|
600
599
|
type: 'string',
|
|
601
|
-
description: 'The task identifier.'
|
|
600
|
+
description: common_1.nls.localizeByDefault('The task identifier.')
|
|
602
601
|
}
|
|
603
602
|
}
|
|
604
603
|
};
|
|
@@ -612,18 +611,18 @@ const processTaskConfigurationSchema = {
|
|
|
612
611
|
isBackground: {
|
|
613
612
|
type: 'boolean',
|
|
614
613
|
default: false,
|
|
615
|
-
description: 'Whether the executed task is kept alive and is running in the background.'
|
|
614
|
+
description: common_1.nls.localizeByDefault('Whether the executed task is kept alive and is running in the background.')
|
|
616
615
|
},
|
|
617
616
|
dependsOn: {
|
|
618
617
|
anyOf: [
|
|
619
618
|
{
|
|
620
619
|
type: 'string',
|
|
621
|
-
description: 'Another task this task depends on.'
|
|
620
|
+
description: common_1.nls.localizeByDefault('Another task this task depends on.')
|
|
622
621
|
},
|
|
623
622
|
taskIdentifier,
|
|
624
623
|
{
|
|
625
624
|
type: 'array',
|
|
626
|
-
description: 'The other tasks this task depends on.',
|
|
625
|
+
description: common_1.nls.localizeByDefault('The other tasks this task depends on.'),
|
|
627
626
|
items: {
|
|
628
627
|
anyOf: [
|
|
629
628
|
{
|
|
@@ -634,31 +633,31 @@ const processTaskConfigurationSchema = {
|
|
|
634
633
|
}
|
|
635
634
|
}
|
|
636
635
|
],
|
|
637
|
-
description: 'Either a string representing another task or an array of other tasks that this task depends on.'
|
|
636
|
+
description: common_1.nls.localizeByDefault('Either a string representing another task or an array of other tasks that this task depends on.')
|
|
638
637
|
},
|
|
639
638
|
dependsOrder: {
|
|
640
639
|
type: 'string',
|
|
641
640
|
enum: ['parallel', 'sequence'],
|
|
642
641
|
enumDescriptions: [
|
|
643
|
-
'Run all dependsOn tasks in parallel.',
|
|
644
|
-
'Run all dependsOn tasks in sequence.'
|
|
642
|
+
common_1.nls.localizeByDefault('Run all dependsOn tasks in parallel.'),
|
|
643
|
+
common_1.nls.localizeByDefault('Run all dependsOn tasks in sequence.')
|
|
645
644
|
],
|
|
646
645
|
default: 'parallel',
|
|
647
|
-
description: 'Determines the order of the dependsOn tasks for this task. Note that this property is not recursive.'
|
|
646
|
+
description: common_1.nls.localizeByDefault('Determines the order of the dependsOn tasks for this task. Note that this property is not recursive.')
|
|
648
647
|
},
|
|
649
648
|
windows: {
|
|
650
649
|
type: 'object',
|
|
651
|
-
description: 'Windows specific command configuration
|
|
650
|
+
description: common_1.nls.localizeByDefault('Windows specific command configuration'),
|
|
652
651
|
properties: commandAndArgs
|
|
653
652
|
},
|
|
654
653
|
osx: {
|
|
655
654
|
type: 'object',
|
|
656
|
-
description: '
|
|
655
|
+
description: common_1.nls.localizeByDefault('Mac specific command configuration'),
|
|
657
656
|
properties: commandAndArgs
|
|
658
657
|
},
|
|
659
658
|
linux: {
|
|
660
659
|
type: 'object',
|
|
661
|
-
description: 'Linux specific command configuration
|
|
660
|
+
description: common_1.nls.localizeByDefault('Linux specific command configuration'),
|
|
662
661
|
properties: commandAndArgs
|
|
663
662
|
},
|
|
664
663
|
group,
|
|
@@ -671,7 +670,7 @@ const processTaskConfigurationSchema = {
|
|
|
671
670
|
const customizedDetectedTasks = [];
|
|
672
671
|
const customSchemas = [];
|
|
673
672
|
const taskConfigurationSchema = {
|
|
674
|
-
$id:
|
|
673
|
+
$id: task_preferences_1.taskSchemaId,
|
|
675
674
|
anyOf: [processTaskConfigurationSchema, ...customizedDetectedTasks, ...customSchemas]
|
|
676
675
|
};
|
|
677
676
|
//# sourceMappingURL=task-schema-updater.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"task-schema-updater.js","sourceRoot":"","sources":["../../src/browser/task-schema-updater.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"task-schema-updater.js","sourceRoot":"","sources":["../../src/browser/task-schema-updater.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,+CAA+C;AAC/C,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;AAChF,oKAAoK;AACpK,iCAAiC;AACjC;;;gGAGgG;;;;AAEhG,8CAA8C;AAC9C,uCAAwC;AACxC,4DAAiF;AACjF,iFAAmI;AACnI,mDAAiE;AAEjE,sGAA0F;AAC1F,oDAA6C;AAC7C,mFAAyE;AACzE,yEAAoE;AACpE,sCAAuD;AACvD,4DAAgE;AAChE,0DAAgE;AAEhE,iEAA0D;AAGnD,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;IAAvB;QAiBgB,iCAA4B,GAAG,IAAI,gBAAO,EAAQ,CAAC;QAC7D,0BAAqB,GAAG,IAAI,CAAC,4BAA4B,CAAC,KAAK,CAAC;QAEtD,QAAG,GAAG,IAAI,aAAG,CAAC,+BAAY,CAAC,CAAC;QAsBtC,WAAM,GAAG,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC;IA4IzD,CAAC;IA/Ja,IAAI;QACV,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC;QAC5C,IAAI,CAAC,yBAAyB,EAAE,CAAC;QACjC,IAAI,CAAC,wBAAwB,EAAE,CAAC;QAChC,oGAAoG;QACpG,IAAI,CAAC,sBAAsB,CAAC,yBAAyB,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,yBAAyB,EAAE,CAAC,CAAC;QAC9F,uGAAuG;QACvG,IAAI,CAAC,sBAAsB,CAAC,2BAA2B,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,wBAAwB,EAAE,CAAC,CAAC;QAC/F,IAAI,CAAC,sBAAsB,CAAC,6BAA6B,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,wBAAwB,EAAE,CAAC,CAAC;IACrG,CAAC;IAED,eAAe,CAAC,OAAkC;QAC9C,OAAO,CAAC,cAAc,CAAC;YACnB,SAAS,EAAE,CAAC,YAAY,EAAE,wBAAc,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,QAAQ,EAAE,CAAC;YAC1E,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE;SAC3B,CAAC,CAAC;QACH,IAAI,CAAC,gBAAgB,CAAC,YAAY,CAAC,OAAO,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;IAC/E,CAAC;IAGS,QAAQ;QACd,uBAAuB,CAAC,KAAK,GAAG,CAAC,8BAA8B,EAAE,GAAG,uBAAuB,EAAE,GAAG,aAAa,CAAC,CAAC;QAE/G,MAAM,MAAM,GAAG,IAAI,CAAC,aAAa,EAAE,CAAC;QACpC,IAAI,CAAC,UAAU,GAAG,IAAI,GAAG,EAAE,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC5C,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC;QAChD,IAAI,CAAC,4BAA4B,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IACtD,CAAC;IAED,8DAA8D;IAC9D,QAAQ,CAAC,IAAS;QACd,OAAO,CAAC,CAAC,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;IACxD,CAAC;IAGD;;;;;;OAMG;IACH,YAAY,CAAC,MAAmB;QAC5B,MAAM,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC;QAC5B,IAAI,QAAQ,EAAE,CAAC;YACX,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC;QACrC,CAAC;QAED,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC3B,IAAI,CAAC,MAAM,EAAE,CAAC;IAClB,CAAC;IAED;;;;OAIG;IACH,eAAe,CAAC,GAAW;QACvB,MAAM,SAAS,GAAG,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC;QAC9C,IAAI,SAAS,EAAE,CAAC;YACZ,IAAI,CAAC,MAAM,EAAE,CAAC;QAClB,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACO,iBAAiB,CAAC,GAAW;QACnC,MAAM,KAAK,GAAG,aAAa,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,IAAI,OAAO,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QACvF,IAAI,KAAK,GAAG,CAAC,CAAC,EAAE,CAAC;YACb,aAAa,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;YAC/B,OAAO,IAAI,CAAC;QAChB,CAAC;QACD,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,sFAAsF;IACtF,KAAK,CAAC,sBAAsB;QACxB,MAAM,oBAAoB,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,sBAAsB,EAAE,CAAC;QAC5E,MAAM,qBAAqB,GAAG,IAAI,CAAC,sBAAsB,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QAC5F,MAAM,QAAQ,GAAG,IAAI,GAAG,CAAC,CAAC,GAAG,oBAAoB,EAAE,GAAG,qBAAqB,CAAC,CAAC,CAAC;QAC9E,OAAO,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC;IAChD,CAAC;IAEO,+BAA+B;QACnC,uBAAuB,CAAC,MAAM,GAAG,CAAC,CAAC;QACnC,MAAM,WAAW,GAAG,IAAI,CAAC,sBAAsB,CAAC,MAAM,EAAE,CAAC;QACzD,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACtB,MAAM,sBAAsB,GAAgB;gBACxC,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,CAAC,MAAM,CAAC;gBAClB,UAAU,EAAE,EAAE;aACjB,CAAC;YACF,MAAM,QAAQ,GAAG;gBACb,GAAG,eAAe;gBAClB,IAAI,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC;gBACpB,OAAO,EAAE,GAAG,CAAC,QAAQ;gBACrB,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,4BAA4B,CAAC;aACnE,CAAC;YACF,sBAAsB,CAAC,UAAW,CAAC,IAAI,GAAG,QAAQ,CAAC;YACnD,MAAM,QAAQ,GAAG,GAAG,CAAC,UAAU,CAAC,QAAQ,IAAI,EAAE,CAAC;YAC/C,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE;gBAClC,IAAI,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC,YAAY,KAAK,QAAQ,CAAC,EAAE,CAAC,CAAC,wBAAwB;oBACpF,sBAAsB,CAAC,QAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;gBACpD,CAAC;gBACD,sBAAsB,CAAC,UAAW,CAAC,QAAQ,CAAC,GAAG,EAAE,GAAG,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,UAAW,CAAC,QAAQ,CAAC,EAAE,CAAC;YACtG,CAAC,CAAC,CAAC;YACH,sBAAsB,CAAC,UAAW,CAAC,KAAK,GAAG,SAAS,CAAC;YACrD,sBAAsB,CAAC,UAAW,CAAC,cAAc,GAAG,cAAc,CAAC;YACnE,sBAAsB,CAAC,UAAW,CAAC,YAAY,GAAG,YAAY,CAAC;YAC/D,sBAAsB,CAAC,UAAW,CAAC,OAAO,GAAG,oBAAoB,CAAC;YAClE,sBAAsB,CAAC,UAAW,CAAC,KAAK,GAAG,KAAK,CAAC;YACjD,sBAAsB,CAAC,UAAW,CAAC,MAAM,GAAG,MAAM,CAAC;YACnD,sBAAsB,CAAC,oBAAoB,GAAG,IAAI,CAAC;YACnD,uBAAuB,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC;QACzD,CAAC,CAAC,CAAC;IACP,CAAC;IAED,qCAAqC;IACrC,aAAa;QACT,OAAO;YACH,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE;YACxC,UAAU,EAAE;gBACR,OAAO,EAAE;oBACL,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,OAAO;oBAChB,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,8BAA8B,CAAC;iBACrE;gBACD,KAAK,EAAE;oBACH,IAAI,EAAE,OAAO;oBACb,KAAK,EAAE;wBACH,GAAG,IAAA,kBAAS,EAAC,uBAAuB,CAAC;qBACxC;oBACD,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,6GAA6G,CAAC;iBACpJ;gBACD,MAAM,EAAE,oCAAY,CAAC,WAAY,CAAC,MAAM;aAC3C;YACD,oBAAoB,EAAE,KAAK;YAC3B,aAAa,EAAE,IAAI;YACnB,mBAAmB,EAAE,IAAI;SAC5B,CAAC;IACN,CAAC;IAED,sGAAsG;IAC9F,yBAAyB;QAC7B,MAAM,YAAY,GAAG,IAAI,CAAC,sBAAsB,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,uBAAc,EAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;QAC3F,mBAAmB,CAAC,MAAM,GAAG,CAAC,CAAC;QAC/B,mBAAmB,CAAC,IAAI,CAAC,GAAG,YAAY,CAAC,CAAC;QAC1C,IAAI,CAAC,MAAM,EAAE,CAAC;IAClB,CAAC;IAEO,KAAK,CAAC,wBAAwB;QAClC,IAAI,CAAC,+BAA+B,EAAE,CAAC;QACvC,IAAI,CAAC,MAAM,EAAE,CAAC;IAClB,CAAC;CACJ,CAAA;AAtLY,8CAAiB;AAGP;IADlB,IAAA,kBAAM,EAAC,uCAAmB,CAAC;sCACO,uCAAmB;yDAAC;AAGpC;IADlB,IAAA,kBAAM,EAAC,sDAAsB,CAAC;sCACY,sDAAsB;iEAAC;AAG/C;IADlB,IAAA,kBAAM,EAAC,iDAAsB,CAAC;sCACY,iDAAsB;iEAAC;AAG/C;IADlB,IAAA,kBAAM,EAAC,mBAAU,CAAC;;qDACuB;AAGvB;IADlB,IAAA,kBAAM,EAAC,0BAAgB,CAAC;sCACY,0BAAgB;2DAAC;AAQ5C;IADT,IAAA,yBAAa,GAAE;;;;6CAUf;4BAhCQ,iBAAiB;IAD7B,IAAA,sBAAU,GAAE;GACA,iBAAiB,CAsL7B;AAED,MAAM,aAAa,GAAgB;IAC/B,IAAI,EAAE,QAAQ;IACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,4EAA4E,CAAC;CACnH,CAAC;AAEF,MAAM,gBAAgB,GAAgB;IAClC,IAAI,EAAE,OAAO;IACb,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,4DAA4D,CAAC;IAChG,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;KACjB;CACJ,CAAC;AAEF,MAAM,oBAAoB,GAAgB;IACtC,IAAI,EAAE,QAAQ;IACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,4BAA4B,CAAC;IAChE,UAAU,EAAE;QACR,GAAG,EAAE;YACD,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,QAAQ,CAAC,sCAAsC,EAC5D,qHAAqH,CAAC;YAC1H,OAAO,EAAE,oBAAoB;SAChC;QACD,GAAG,EAAE;YACD,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,uGAAuG,CAAC;SAC9I;QACD,KAAK,EAAE;YACH,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,kCAAkC,CAAC;YACtE,UAAU,EAAE;gBACR,UAAU,EAAE;oBACR,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,uBAAuB,CAAC;iBAC9D;gBACD,IAAI,EAAE;oBACF,IAAI,EAAE,OAAO;oBACb,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,sBAAsB,CAAC;oBAC1D,KAAK,EAAE;wBACH,IAAI,EAAE,QAAQ;qBACjB;iBACJ;aACJ;SACJ;KACJ;CACJ,CAAC;AAEF,MAAM,mBAAmB,GAAa,EAAE,CAAC;AACzC,MAAM,gBAAgB,GAAG,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;AAC9C,MAAM,kBAAkB,GAAG,CAAC,GAAG,gBAAgB,CAAC,CAAC;AACjD,MAAM,SAAS,GAAgB;IAC3B,IAAI,EAAE,QAAQ;IACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,iCAAiC,CAAC;CACxE,CAAC;AACF,MAAM,eAAe,GAAgB;IACjC,IAAI,EAAE,QAAQ;IACd,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,gBAAgB,CAAC,CAAC,CAAC;IAC5B,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,8EAA8E,CAAC;CAC5G,CAAC;AACX,MAAM,cAAc,GAAG;IACnB,OAAO,EAAE,aAAa;IACtB,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,oBAAoB;CAChC,CAAC;AAEF,MAAM,KAAK,GAAgB;IACvB,KAAK,EAAE;QACH;YACI,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC;YAC/B,gBAAgB,EAAE;gBACd,YAAG,CAAC,iBAAiB,CAAC,iFAAiF,CAAC;gBACxG,YAAG,CAAC,iBAAiB,CAAC,+EAA+E,CAAC;gBACtG,YAAG,CAAC,iBAAiB,CAAC,8BAA8B,CAAC;aACxD;SACJ;QACD;YACI,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACR,IAAI,EAAE;oBACF,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,MAAM;oBACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,6BAA6B,CAAC;oBACjE,IAAI,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC;oBAC/B,gBAAgB,EAAE;wBACd,YAAG,CAAC,iBAAiB,CAAC,iFAAiF,CAAC;wBACxG,YAAG,CAAC,iBAAiB,CAAC,+EAA+E,CAAC;wBACtG,YAAG,CAAC,iBAAiB,CAAC,8BAA8B,CAAC;qBACxD;iBACJ;gBACD,SAAS,EAAE;oBACP,IAAI,EAAE,SAAS;oBACf,OAAO,EAAE,KAAK;oBACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,oHAAoH,CAAC;iBAC3J;aACJ;SACJ;KACJ;IACD,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAC9B,iJAAiJ,CAAC;CACzJ,CAAC;AAEF,MAAM,cAAc,GAAgB;IAChC,OAAO,EAAE;QACL,MAAM,EAAE,oDAAoD;QAC5D,IAAI,EAAE,CAAC;QACP,QAAQ,EAAE,CAAC;QACX,OAAO,EAAE,CAAC;KACb;IACD,IAAI,EAAE,QAAQ;IACd,UAAU,EAAE;QACR,MAAM,EAAE;YACJ,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,yEAAyE,CAAC;SAChH;QACD,IAAI,EAAE;YACF,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,wEAAwE,CAAC;SAC/G;QACD,IAAI,EAAE;YACF,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,8DAA8D,CAAC;SACrG;QACD,QAAQ,EAAE;YACN,IAAI,EAAE,SAAS;YACf,mCAAmC;YACnC,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,yLAAyL,CAAC;SAChO;QACD,IAAI,EAAE;YACF,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,4DAA4D,CAAC;SACnG;QACD,MAAM,EAAE;YACJ,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,sEAAsE,CAAC;SAC7G;QACD,OAAO,EAAE;YACL,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,wEAAwE,CAAC;SAC/G;QACD,SAAS,EAAE;YACP,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,kFAAkF,CAAC;SACzH;QACD,QAAQ,EAAE;YACN,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,wEAAwE,CAAC;SAC/G;QACD,IAAI,EAAE;YACF,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,oEAAoE,CAAC;SAC3G;QACD,OAAO,EAAE;YACL,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,yHAAyH,CAAC;SAChK;QACD,IAAI,EAAE;YACF,IAAI,EAAE,SAAS;YACf,mCAAmC;YACnC,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,wKAAwK,CAAC;SAC/M;KACJ;CACJ,CAAC;AAEF,MAAM,uBAAuB,GAAgB;IACzC,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,cAAc;CACxB,CAAC;AAEF,MAAM,eAAe,GAAgB;IACjC,IAAI,EAAE,QAAQ;IACd,oBAAoB,EAAE,KAAK;IAC3B,UAAU,EAAE;QACR,MAAM,EAAE;YACJ,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,yEAAyE,CAAC;SAChH;QACD,IAAI,EAAE;YACF,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,wDAAwD,CAAC;SAC/F;KACJ;CACJ,CAAC;AAEF,MAAM,WAAW,GAAgB;IAC7B,KAAK,EAAE;QACH;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,iDAAiD,CAAC;SACxF;QACD,cAAc;QACd,uBAAuB;KAC1B;IACD,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,oHAAoH,CAAC;CAC3J,CAAC;AAEF,MAAM,oBAAoB,GAAgB;IACtC,IAAI,EAAE,QAAQ;IACd,UAAU,EAAE;QACR,IAAI,EAAE;YACF,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,mBAAmB;YACzB,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,4CAA4C,CAAC;SACnF;QACD,KAAK,EAAE;YACH,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,QAAQ,CAAC,8CAA8C,EACpE,0IAA0I,CAAC;SAClJ;QACD,MAAM,EAAE;YACJ,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,sGAAsG,CAAC;SAC7I;QACD,QAAQ,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,CAAC,OAAO,EAAE,SAAS,EAAE,MAAM,CAAC;YAClC,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,+GAA+G,CAAC;SACtJ;QACD,OAAO,EAAE;YACL,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,CAAC,cAAc,EAAE,eAAe,EAAE,iBAAiB,CAAC;YAC1D,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,qGAAqG,CAAC;SAC5I;QACD,OAAO,EAAE,WAAW;QACpB,YAAY,EAAE;YACV,KAAK,EAAE;gBACH;oBACI,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,CAAC,UAAU,EAAE,UAAU,EAAE,YAAY,CAAC;iBAC/C;gBACD;oBACI,IAAI,EAAE,OAAO;oBACb,KAAK,EAAE;wBACH,IAAI,EAAE,QAAQ;qBACjB;iBACJ;aACJ;YACD,mCAAmC;YACnC,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,+aAA+a,CAAC;SACtd;QACD,UAAU,EAAE;YACR,IAAI,EAAE,QAAQ;YACd,oBAAoB,EAAE,KAAK;YAC3B,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,+EAA+E,CAAC;YACnH,UAAU,EAAE;gBACR,aAAa,EAAE;oBACX,IAAI,EAAE,SAAS;oBACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAC9B,qJAAqJ,CAAC;iBAC7J;gBACD,aAAa,EAAE;oBACX,KAAK,EAAE;wBACH;4BACI,IAAI,EAAE,QAAQ;yBACjB;wBACD,eAAe;qBAClB;oBACD,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,sEAAsE,CAAC;iBAC7G;gBACD,WAAW,EAAE;oBACT,KAAK,EAAE;wBACH;4BACI,IAAI,EAAE,QAAQ;yBACjB;wBACD,eAAe;qBAClB;oBACD,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,oEAAoE,CAAC;iBAC3G;aACJ;SACJ;QACD,QAAQ,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,oBAAoB,EAAE,KAAK;YAC3B,kBAAkB,EAAE,YAAG,CAAC,iBAAiB,CAAC,8DAA8D,CAAC;YACzG,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,4DAA4D,CAAC;YAChG,UAAU,EAAE;gBACR,aAAa,EAAE;oBACX,IAAI,EAAE,SAAS;oBACf,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAC9B,0IAA0I,CAAC;iBAClJ;gBACD,aAAa,EAAE;oBACX,KAAK,EAAE;wBACH;4BACI,IAAI,EAAE,QAAQ;yBACjB;wBACD,eAAe;qBAClB;oBACD,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,oEAAoE,CAAC;iBAC3G;gBACD,WAAW,EAAE;oBACT,KAAK,EAAE;wBACH;4BACI,IAAI,EAAE,QAAQ;yBACjB;wBACD,eAAe;qBAClB;oBACD,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,kEAAkE,CAAC;iBACzG;aACJ;SACJ;KACJ;CACJ,CAAC;AAEF,MAAM,cAAc,GAAgB;IAChC,KAAK,EAAE;QACH;YACI,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,mBAAmB;SAC5B;QACD;YACI,IAAI,EAAE,OAAO;YACb,KAAK,EAAE;gBACH,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,mBAAmB;aAC5B;SACJ;QACD,oBAAoB;QACpB;YACI,IAAI,EAAE,OAAO;YACb,KAAK,EAAE,oBAAoB;SAC9B;KACJ;IACD,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,oIAAoI,CAAC;CAC3K,CAAC;AAEF,MAAM,YAAY,GAAgB;IAC9B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE;QACL,IAAI,EAAE,IAAI;QACV,MAAM,EAAE,QAAQ;QAChB,KAAK,EAAE,KAAK;QACZ,KAAK,EAAE,QAAQ;QACf,gBAAgB,EAAE,IAAI;QACtB,KAAK,EAAE,KAAK;KACf;IACD,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,qFAAqF,CAAC;IACzH,oBAAoB,EAAE,IAAI;IAC1B,UAAU,EAAE;QACR,IAAI,EAAE;YACF,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,IAAI;YACb,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,gFAAgF,CAAC;SACvH;QACD,KAAK,EAAE;YACH,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,yGAAyG,CAAC;SAChJ;QACD,MAAM,EAAE;YACJ,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,CAAC;YACnC,gBAAgB,EAAE;gBACd,YAAG,CAAC,iBAAiB,CAAC,yDAAyD,CAAC;gBAChF,YAAG,CAAC,iBAAiB,CAAC,kGAAkG,CAAC;gBACzH,YAAG,CAAC,iBAAiB,CAAC,wDAAwD,CAAC;aAClF;YACD,OAAO,EAAE,QAAQ;YACjB,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAC9B,uIAAuI,CAAC;SAC/I;QACD,KAAK,EAAE;YACH,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,CAAC,QAAQ,EAAE,WAAW,EAAE,KAAK,CAAC;YACpC,gBAAgB,EAAE;gBACd,YAAG,CAAC,QAAQ,CAAC,6CAA6C,EAAE,0FAA0F,CAAC;gBACvJ,mCAAmC;gBACnC,YAAG,CAAC,QAAQ,CAAC,gDAAgD,EAAE,qLAAqL,CAAC;gBACrP,YAAG,CAAC,QAAQ,CAAC,0CAA0C,EAAE,6DAA6D,CAAC;aAC1H;YACD,OAAO,EAAE,QAAQ;YACjB,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,6GAA6G,CAAC;SACpJ;QACD,gBAAgB,EAAE;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,IAAI;YACb,WAAW,EAAE,YAAG,CAAC,QAAQ,CAAC,iDAAiD,EAAE,0EAA0E,CAAC;SAC3J;QACD,KAAK,EAAE;YACH,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,qEAAqE,CAAC;SAC5G;KACJ;CACJ,CAAC;AAEF,MAAM,MAAM,GAAgB;IACxB,IAAI,EAAE,QAAQ;IACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,sFAAsF,CAAC;CAC7H,CAAC;AAEF,MAAM,cAAc,GAAgB;IAChC,IAAI,EAAE,QAAQ;IACd,oBAAoB,EAAE,IAAI;IAC1B,UAAU,EAAE;QACR,IAAI,EAAE;YACF,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,sBAAsB,CAAC;SAC7D;KACJ;CACJ,CAAC;AAEF,MAAM,8BAA8B,GAAgB;IAChD,IAAI,EAAE,QAAQ;IACd,QAAQ,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,SAAS,CAAC;IACtC,UAAU,EAAE;QACR,KAAK,EAAE,SAAS;QAChB,IAAI,EAAE,eAAe;QACrB,GAAG,cAAc;QACjB,YAAY,EAAE;YACV,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,2EAA2E,CAAC;SAClH;QACD,SAAS,EAAE;YACP,KAAK,EAAE;gBACH;oBACI,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,oCAAoC,CAAC;iBAC3E;gBACD,cAAc;gBACd;oBACI,IAAI,EAAE,OAAO;oBACb,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,uCAAuC,CAAC;oBAC3E,KAAK,EAAE;wBACH,KAAK,EAAE;4BACH;gCACI,IAAI,EAAE,QAAQ;6BACjB;4BACD,cAAc;yBACjB;qBACJ;iBACJ;aACJ;YACD,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,iGAAiG,CAAC;SACxI;QACD,YAAY,EAAE;YACV,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,CAAC,UAAU,EAAE,UAAU,CAAC;YAC9B,gBAAgB,EAAE;gBACd,YAAG,CAAC,iBAAiB,CAAC,sCAAsC,CAAC;gBAC7D,YAAG,CAAC,iBAAiB,CAAC,sCAAsC,CAAC;aAChE;YACD,OAAO,EAAE,UAAU;YACnB,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,sGAAsG,CAAC;SAC7I;QACD,OAAO,EAAE;YACL,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,wCAAwC,CAAC;YAC5E,UAAU,EAAE,cAAc;SAC7B;QACD,GAAG,EAAE;YACD,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,oCAAoC,CAAC;YACxE,UAAU,EAAE,cAAc;SAC7B;QACD,KAAK,EAAE;YACH,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,YAAG,CAAC,iBAAiB,CAAC,sCAAsC,CAAC;YAC1E,UAAU,EAAE,cAAc;SAC7B;QACD,KAAK;QACL,cAAc;QACd,YAAY;QACZ,MAAM;KACT;IACD,oBAAoB,EAAE,IAAI;CAC7B,CAAC;AAEF,MAAM,uBAAuB,GAAkB,EAAE,CAAC;AAClD,MAAM,aAAa,GAAkB,EAAE,CAAC;AAExC,MAAM,uBAAuB,GAAgB;IACzC,GAAG,EAAE,+BAAY;IACjB,KAAK,EAAE,CAAC,8BAA8B,EAAE,GAAG,uBAAuB,EAAE,GAAG,aAAa,CAAC;CACxF,CAAC"}
|