@codingame/monaco-vscode-task-service-override 9.0.2 → 10.0.0
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/package.json +2 -2
- package/vscode/src/vs/base/common/parsers.js +5 -13
- package/vscode/src/vs/workbench/contrib/tasks/browser/abstractTaskService.js +220 -226
- package/vscode/src/vs/workbench/contrib/tasks/browser/runAutomaticTasks.js +9 -10
- package/vscode/src/vs/workbench/contrib/tasks/browser/task.contribution.js +82 -87
- package/vscode/src/vs/workbench/contrib/tasks/browser/taskQuickPick.js +17 -17
- package/vscode/src/vs/workbench/contrib/tasks/browser/taskService.js +1 -2
- package/vscode/src/vs/workbench/contrib/tasks/browser/taskTerminalStatus.js +15 -16
- package/vscode/src/vs/workbench/contrib/tasks/browser/tasksQuickAccess.js +2 -2
- package/vscode/src/vs/workbench/contrib/tasks/browser/terminalTaskSystem.js +67 -69
- package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchemaCommon.js +41 -41
- package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchema_v1.js +8 -8
- package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchema_v2.js +82 -82
- package/vscode/src/vs/workbench/contrib/tasks/common/problemCollectors.js +5 -14
- package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.js +77 -77
- package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.js +45 -46
- package/vscode/src/vs/workbench/contrib/tasks/common/taskSystem.js +1 -17
- package/vscode/src/vs/workbench/contrib/tasks/common/taskTemplates.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEscapeSequences.js +2 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-task-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"vscode": "npm:@codingame/monaco-vscode-api@
|
|
29
|
+
"vscode": "npm:@codingame/monaco-vscode-api@10.0.0"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -1,14 +1,6 @@
|
|
|
1
|
-
var ValidationState;
|
|
2
|
-
( (function(ValidationState) {
|
|
3
|
-
ValidationState[ValidationState["OK"] = 0] = "OK";
|
|
4
|
-
ValidationState[ValidationState["Info"] = 1] = "Info";
|
|
5
|
-
ValidationState[ValidationState["Warning"] = 2] = "Warning";
|
|
6
|
-
ValidationState[ValidationState["Error"] = 3] = "Error";
|
|
7
|
-
ValidationState[ValidationState["Fatal"] = 4] = "Fatal";
|
|
8
|
-
})(ValidationState || (ValidationState = {})));
|
|
9
1
|
class ValidationStatus {
|
|
10
2
|
constructor() {
|
|
11
|
-
this._state =
|
|
3
|
+
this._state = 0 ;
|
|
12
4
|
}
|
|
13
5
|
get state() {
|
|
14
6
|
return this._state;
|
|
@@ -19,10 +11,10 @@ class ValidationStatus {
|
|
|
19
11
|
}
|
|
20
12
|
}
|
|
21
13
|
isOK() {
|
|
22
|
-
return this._state ===
|
|
14
|
+
return this._state === 0 ;
|
|
23
15
|
}
|
|
24
16
|
isFatal() {
|
|
25
|
-
return this._state ===
|
|
17
|
+
return this._state === 4 ;
|
|
26
18
|
}
|
|
27
19
|
}
|
|
28
20
|
class Parser {
|
|
@@ -30,7 +22,7 @@ class Parser {
|
|
|
30
22
|
this._problemReporter = problemReporter;
|
|
31
23
|
}
|
|
32
24
|
reset() {
|
|
33
|
-
this._problemReporter.status.state =
|
|
25
|
+
this._problemReporter.status.state = 0 ;
|
|
34
26
|
}
|
|
35
27
|
get problemReporter() {
|
|
36
28
|
return this._problemReporter;
|
|
@@ -49,4 +41,4 @@ class Parser {
|
|
|
49
41
|
}
|
|
50
42
|
}
|
|
51
43
|
|
|
52
|
-
export { Parser,
|
|
44
|
+
export { Parser, ValidationStatus };
|