@codingame/monaco-vscode-task-service-override 3.2.3 → 4.1.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/task.js +2 -2
- package/external/tslib/tslib.es6.js +0 -11
- package/override/vs/platform/dialogs/common/dialogs.js +0 -8
- package/vscode/src/vs/base/common/parsers.js +0 -44
- package/vscode/src/vs/workbench/contrib/tasks/browser/abstractTaskService.js +0 -3855
- package/vscode/src/vs/workbench/contrib/tasks/browser/runAutomaticTasks.js +0 -185
- package/vscode/src/vs/workbench/contrib/tasks/browser/task.contribution.js +0 -684
- package/vscode/src/vs/workbench/contrib/tasks/browser/taskQuickPick.js +0 -452
- package/vscode/src/vs/workbench/contrib/tasks/browser/taskService.js +0 -36
- package/vscode/src/vs/workbench/contrib/tasks/browser/taskTerminalStatus.js +0 -191
- package/vscode/src/vs/workbench/contrib/tasks/browser/tasksQuickAccess.js +0 -121
- package/vscode/src/vs/workbench/contrib/tasks/browser/terminalTaskSystem.js +0 -1713
- package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchemaCommon.js +0 -440
- package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchema_v1.js +0 -125
- package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchema_v2.js +0 -901
- package/vscode/src/vs/workbench/contrib/tasks/common/problemCollectors.js +0 -465
- package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.js +0 -1796
- package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.js +0 -1581
- package/vscode/src/vs/workbench/contrib/tasks/common/taskSystem.js +0 -15
- package/vscode/src/vs/workbench/contrib/tasks/common/taskTemplates.js +0 -145
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEscapeSequences.js +0 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-task-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@4.1.0"
|
|
22
22
|
}
|
|
23
23
|
}
|
package/task.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
|
|
2
2
|
import { ITaskService } from 'vscode/vscode/vs/workbench/contrib/tasks/common/taskService';
|
|
3
|
-
import { TaskService } from '
|
|
4
|
-
import '
|
|
3
|
+
import { TaskService } from 'vscode/vscode/vs/workbench/contrib/tasks/browser/taskService';
|
|
4
|
+
import 'vscode/vscode/vs/workbench/contrib/tasks/browser/task.contribution';
|
|
5
5
|
|
|
6
6
|
function getServiceOverride() {
|
|
7
7
|
return {
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
function __decorate(decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
}
|
|
7
|
-
function __param(paramIndex, decorator) {
|
|
8
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export { __decorate, __param };
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
var ConfirmResult;
|
|
2
|
-
( (function(ConfirmResult) {
|
|
3
|
-
ConfirmResult[ConfirmResult["SAVE"] = 0] = "SAVE";
|
|
4
|
-
ConfirmResult[ConfirmResult["DONT_SAVE"] = 1] = "DONT_SAVE";
|
|
5
|
-
ConfirmResult[ConfirmResult["CANCEL"] = 2] = "CANCEL";
|
|
6
|
-
})(ConfirmResult || (ConfirmResult = {})));
|
|
7
|
-
|
|
8
|
-
export { ConfirmResult };
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
class ValidationStatus {
|
|
2
|
-
constructor() {
|
|
3
|
-
this._state = 0 ;
|
|
4
|
-
}
|
|
5
|
-
get state() {
|
|
6
|
-
return this._state;
|
|
7
|
-
}
|
|
8
|
-
set state(value) {
|
|
9
|
-
if (value > this._state) {
|
|
10
|
-
this._state = value;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
isOK() {
|
|
14
|
-
return this._state === 0 ;
|
|
15
|
-
}
|
|
16
|
-
isFatal() {
|
|
17
|
-
return this._state === 4 ;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
class Parser {
|
|
21
|
-
constructor(problemReporter) {
|
|
22
|
-
this._problemReporter = problemReporter;
|
|
23
|
-
}
|
|
24
|
-
reset() {
|
|
25
|
-
this._problemReporter.status.state = 0 ;
|
|
26
|
-
}
|
|
27
|
-
get problemReporter() {
|
|
28
|
-
return this._problemReporter;
|
|
29
|
-
}
|
|
30
|
-
info(message) {
|
|
31
|
-
this._problemReporter.info(message);
|
|
32
|
-
}
|
|
33
|
-
warn(message) {
|
|
34
|
-
this._problemReporter.warn(message);
|
|
35
|
-
}
|
|
36
|
-
error(message) {
|
|
37
|
-
this._problemReporter.error(message);
|
|
38
|
-
}
|
|
39
|
-
fatal(message) {
|
|
40
|
-
this._problemReporter.fatal(message);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export { Parser, ValidationStatus };
|