@codingame/monaco-vscode-task-service-override 28.4.1 → 29.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.
Files changed (22) hide show
  1. package/package.json +2 -2
  2. package/vscode/src/vs/base/common/parsers.d.ts +32 -0
  3. package/vscode/src/vs/base/common/parsers.js +54 -0
  4. package/vscode/src/vs/workbench/contrib/tasks/browser/abstractTaskService.d.ts +1 -1
  5. package/vscode/src/vs/workbench/contrib/tasks/browser/abstractTaskService.js +114 -114
  6. package/vscode/src/vs/workbench/contrib/tasks/browser/runAutomaticTasks.js +7 -7
  7. package/vscode/src/vs/workbench/contrib/tasks/browser/task.contribution.js +48 -48
  8. package/vscode/src/vs/workbench/contrib/tasks/browser/taskQuickPick.js +19 -19
  9. package/vscode/src/vs/workbench/contrib/tasks/browser/taskService.js +1 -1
  10. package/vscode/src/vs/workbench/contrib/tasks/browser/taskTerminalStatus.js +10 -10
  11. package/vscode/src/vs/workbench/contrib/tasks/browser/tasksQuickAccess.js +2 -2
  12. package/vscode/src/vs/workbench/contrib/tasks/browser/terminalTaskSystem.js +17 -17
  13. package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchemaCommon.js +42 -42
  14. package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchema_v1.js +9 -9
  15. package/vscode/src/vs/workbench/contrib/tasks/common/jsonSchema_v2.js +86 -86
  16. package/vscode/src/vs/workbench/contrib/tasks/common/problemCollectors.d.ts +1 -1
  17. package/vscode/src/vs/workbench/contrib/tasks/common/problemCollectors.js +1 -1
  18. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.d.ts +433 -0
  19. package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.js +1637 -0
  20. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.d.ts +514 -0
  21. package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.js +1798 -0
  22. package/vscode/src/vs/workbench/contrib/tasks/common/taskTemplates.js +4 -4
@@ -6,7 +6,7 @@ const dotnetBuild = {
6
6
  label: ".NET Core",
7
7
  sort: "NET Core",
8
8
  autoDetect: false,
9
- description: ( localize(13005, "Executes .NET Core build command")),
9
+ description: ( localize(13254, "Executes .NET Core build command")),
10
10
  content: [
11
11
  "{",
12
12
  "\t// See https://go.microsoft.com/fwlink/?LinkId=733558",
@@ -38,7 +38,7 @@ const msbuild = {
38
38
  id: "msbuild",
39
39
  label: "MSBuild",
40
40
  autoDetect: false,
41
- description: ( localize(13006, "Executes the build target")),
41
+ description: ( localize(13255, "Executes the build target")),
42
42
  content: [
43
43
  "{",
44
44
  "\t// See https://go.microsoft.com/fwlink/?LinkId=733558",
@@ -72,7 +72,7 @@ const command = {
72
72
  id: "externalCommand",
73
73
  label: "Others",
74
74
  autoDetect: false,
75
- description: ( localize(13007, "Example to run an arbitrary external command")),
75
+ description: ( localize(13256, "Example to run an arbitrary external command")),
76
76
  content: [
77
77
  "{",
78
78
  "\t// See https://go.microsoft.com/fwlink/?LinkId=733558",
@@ -93,7 +93,7 @@ const maven = {
93
93
  label: "maven",
94
94
  sort: "MVN",
95
95
  autoDetect: false,
96
- description: ( localize(13008, "Executes common maven commands")),
96
+ description: ( localize(13257, "Executes common maven commands")),
97
97
  content: [
98
98
  "{",
99
99
  "\t// See https://go.microsoft.com/fwlink/?LinkId=733558",