@codingame/monaco-vscode-task-service-override 4.2.0 → 4.3.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/workbench/contrib/tasks/browser/abstractTaskService.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/browser/runAutomaticTasks.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/browser/task.contribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/tasks/browser/taskQuickPick.js +2 -2
- package/vscode/src/vs/workbench/contrib/tasks/browser/taskTerminalStatus.js +2 -2
- package/vscode/src/vs/workbench/contrib/tasks/browser/tasksQuickAccess.js +1 -1
- package/external/tslib/tslib.es6.js +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-task-service-override",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.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@4.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@4.3.0"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
3
3
|
import { Emitter, Event } from 'vscode/vscode/vs/base/common/event';
|
|
4
4
|
import { match } from 'vscode/vscode/vs/base/common/glob';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { joinPath } from 'vscode/vscode/vs/base/common/resources';
|
|
4
4
|
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localizeWithPath, localize2WithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
4
4
|
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
@@ -9,7 +9,7 @@ import { Extensions as Extensions$3 } from 'vscode/vscode/vs/platform/jsonschema
|
|
|
9
9
|
import { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar';
|
|
10
10
|
import { Extensions as Extensions$1 } from 'vscode/vscode/vs/workbench/services/output/common/output';
|
|
11
11
|
import { TASKS_CATEGORY, TASK_RUNNING_STATE, TaskGroup } from 'vscode/vscode/vs/workbench/contrib/tasks/common/tasks';
|
|
12
|
-
import { TaskExecutionSupportedContext,
|
|
12
|
+
import { TaskExecutionSupportedContext, ITaskService, TaskCommandsRegistered } from 'vscode/vscode/vs/workbench/contrib/tasks/common/taskService';
|
|
13
13
|
import { Extensions } from 'vscode/vscode/vs/workbench/common/contributions';
|
|
14
14
|
import { RunAutomaticTasks, ManageAutomaticTaskRunning } from './runAutomaticTasks.js';
|
|
15
15
|
import { KeybindingsRegistry } from 'vscode/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { deepClone } from 'vscode/vscode/vs/base/common/objects';
|
|
4
4
|
import { ConfiguringTask, ContributedTask, CustomTask } from 'vscode/vscode/vs/workbench/contrib/tasks/common/tasks';
|
|
@@ -8,7 +8,7 @@ import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/
|
|
|
8
8
|
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
9
9
|
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
10
10
|
import { Event } from 'vscode/vscode/vs/base/common/event';
|
|
11
|
-
import {
|
|
11
|
+
import { INotificationService, Severity } from 'vscode/vscode/vs/platform/notification/common/notification';
|
|
12
12
|
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
13
13
|
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
14
14
|
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
4
4
|
import { Disposable, toDisposable, MutableDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
@@ -7,7 +7,7 @@ import { StartStopProblemCollector } from '../common/problemCollectors.js';
|
|
|
7
7
|
import { ITaskService } from 'vscode/vscode/vs/workbench/contrib/tasks/common/taskService';
|
|
8
8
|
import { MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
|
|
9
9
|
import { spinningLoading } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
|
|
10
|
-
import {
|
|
10
|
+
import { IAccessibilitySignalService, AccessibilitySignal } from 'vscode/vscode/vs/platform/accessibilitySignal/browser/accessibilitySignalService';
|
|
11
11
|
|
|
12
12
|
const TASK_TERMINAL_STATUS_ID = 'task_terminal_status';
|
|
13
13
|
const ACTIVE_TASK_STATUS = { id: TASK_TERMINAL_STATUS_ID, icon: spinningLoading, severity: Severity$1.Info, tooltip: ( localizeWithPath(
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput';
|
|
4
4
|
import { PickerQuickAccessProvider, TriggerAction } from 'vscode/vscode/vs/platform/quickinput/browser/pickerQuickAccess';
|
|
@@ -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 };
|