@codingame/monaco-vscode-task-service-override 26.2.2 → 27.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 (22) hide show
  1. package/package.json +2 -2
  2. package/vscode/src/vs/workbench/contrib/tasks/browser/abstractTaskService.d.ts +1 -1
  3. package/vscode/src/vs/workbench/contrib/tasks/browser/abstractTaskService.js +143 -147
  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 +47 -47
  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 +51 -35
  12. package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchemaCommon.js +41 -41
  13. package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchema_v1.js +13 -9
  14. package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchema_v2.js +94 -83
  15. package/vscode/src/vs/workbench/contrib/tasks/common/problemCollectors.d.ts +5 -3
  16. package/vscode/src/vs/workbench/contrib/tasks/common/problemCollectors.js +33 -12
  17. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.d.ts +8 -7
  18. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.js +93 -83
  19. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.d.ts +7 -3
  20. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.js +30 -24
  21. package/vscode/src/vs/workbench/contrib/tasks/common/taskSystem.d.ts +1 -1
  22. package/vscode/src/vs/workbench/contrib/tasks/common/taskTemplates.js +4 -4
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": "27.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": "27.0.0"
19
19
  },
20
20
  "main": "index.js",
21
21
  "module": "index.js",
@@ -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;