@codingame/monaco-vscode-task-service-override 26.2.2 → 28.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.
Files changed (24) hide show
  1. package/package.json +2 -2
  2. package/vscode/src/vs/workbench/contrib/tasks/browser/abstractTaskService.d.ts +2 -2
  3. package/vscode/src/vs/workbench/contrib/tasks/browser/abstractTaskService.js +146 -150
  4. package/vscode/src/vs/workbench/contrib/tasks/browser/runAutomaticTasks.d.ts +1 -1
  5. package/vscode/src/vs/workbench/contrib/tasks/browser/runAutomaticTasks.js +8 -8
  6. package/vscode/src/vs/workbench/contrib/tasks/browser/task.contribution.js +48 -48
  7. package/vscode/src/vs/workbench/contrib/tasks/browser/taskQuickPick.js +17 -17
  8. package/vscode/src/vs/workbench/contrib/tasks/browser/taskService.js +1 -1
  9. package/vscode/src/vs/workbench/contrib/tasks/browser/taskTerminalStatus.js +11 -11
  10. package/vscode/src/vs/workbench/contrib/tasks/browser/tasksQuickAccess.js +2 -2
  11. package/vscode/src/vs/workbench/contrib/tasks/browser/terminalTaskSystem.js +53 -37
  12. package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchemaCommon.js +42 -42
  13. package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchema_v1.js +14 -10
  14. package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchema_v2.js +95 -84
  15. package/vscode/src/vs/workbench/contrib/tasks/common/problemCollectors.d.ts +6 -4
  16. package/vscode/src/vs/workbench/contrib/tasks/common/problemCollectors.js +34 -13
  17. package/vscode/src/vs/workbench/contrib/tasks/common/taskSystem.d.ts +1 -1
  18. package/vscode/src/vs/workbench/contrib/tasks/common/taskTemplates.js +4 -4
  19. package/vscode/src/vs/base/common/parsers.d.ts +0 -32
  20. package/vscode/src/vs/base/common/parsers.js +0 -54
  21. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.d.ts +0 -432
  22. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.js +0 -1627
  23. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.d.ts +0 -510
  24. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.js +0 -1790
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-task-service-override",
3
- "version": "26.2.2",
3
+ "version": "28.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - task service-override",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "26.2.2"
18
+ "@codingame/monaco-vscode-api": "28.0.0"
19
19
  },
20
20
  "main": "index.js",
21
21
  "module": "index.js",
@@ -32,7 +32,7 @@ import { ConfiguringTask, ContributedTask, CustomTask, ExecutionEngine, ITaskEve
32
32
  import { ICustomizationProperties, IProblemMatcherRunOptions, ITaskFilter, ITaskProvider, IWorkspaceFolderTaskResult } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/taskService";
33
33
  import { ITaskService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/taskService.service";
34
34
  import { ITaskSummary, ITaskSystem, ITaskSystemInfo, ITaskTerminateResponse } from "../common/taskSystem.js";
35
- import * as TaskConfig from "../common/taskConfiguration.js";
35
+ import * as TaskConfig from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/taskConfiguration";
36
36
  import { IQuickPickItem } from "@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput";
37
37
  import { IQuickInputService } from "@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service";
38
38
  import { IContextKey } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey";
@@ -154,7 +154,7 @@ export declare abstract class AbstractTaskService extends Disposable implements
154
154
  private readonly _taskRunStartTimes;
155
155
  private readonly _taskRunSources;
156
156
  private _activatedTaskProviders;
157
- private readonly notification;
157
+ private readonly toast;
158
158
  constructor(_configurationService: IConfigurationService, _markerService: IMarkerService, _outputService: IOutputService, _paneCompositeService: IPaneCompositePartService, _viewsService: IViewsService, _commandService: ICommandService, _editorService: IEditorService, _fileService: IFileService, _contextService: IWorkspaceContextService, _telemetryService: ITelemetryService, _textFileService: ITextFileService, _modelService: IModelService, _extensionService: IExtensionService, _quickInputService: IQuickInputService, _configurationResolverService: IConfigurationResolverService, _terminalService: ITerminalService, _terminalGroupService: ITerminalGroupService, _storageService: IStorageService, _progressService: IProgressService, _openerService: IOpenerService, _dialogService: IDialogService, _notificationService: INotificationService, _contextKeyService: IContextKeyService, _environmentService: IWorkbenchEnvironmentService, _terminalProfileResolverService: ITerminalProfileResolverService, _pathService: IPathService, _textModelResolverService: ITextModelService, _preferencesService: IPreferencesService, _viewDescriptorService: IViewDescriptorService, _workspaceTrustRequestService: IWorkspaceTrustRequestService, _workspaceTrustManagementService: IWorkspaceTrustManagementService, _logService: ILogService, _themeService: IThemeService, _lifecycleService: ILifecycleService, remoteAgentService: IRemoteAgentService, _instantiationService: IInstantiationService, _chatService: IChatService, _chatAgentService: IChatAgentService, _hostService: IHostService);
159
159
  registerSupportedExecutions(custom?: boolean, shell?: boolean, process?: boolean): void;
160
160
  private _attemptTaskReconnection;