@codingame/monaco-vscode-ab07af84-42e8-5a0f-8aef-b83fb90ede21-common 14.0.5 → 15.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.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@codingame/monaco-vscode-ab07af84-42e8-5a0f-8aef-b83fb90ede21-common",
|
3
|
-
"version": "
|
3
|
+
"version": "15.0.0",
|
4
4
|
"private": false,
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - common package (debug, markers, output, task)",
|
6
6
|
"keywords": [],
|
@@ -15,19 +15,19 @@
|
|
15
15
|
},
|
16
16
|
"type": "module",
|
17
17
|
"dependencies": {
|
18
|
-
"@codingame/monaco-vscode-api": "
|
18
|
+
"@codingame/monaco-vscode-api": "15.0.0"
|
19
19
|
},
|
20
20
|
"exports": {
|
21
21
|
".": {
|
22
22
|
"default": "./empty.js"
|
23
23
|
},
|
24
24
|
"./vscode/*": {
|
25
|
-
"
|
26
|
-
"
|
25
|
+
"types": "./vscode/src/*.d.ts",
|
26
|
+
"default": "./vscode/src/*.js"
|
27
27
|
},
|
28
28
|
"./*": {
|
29
|
-
"
|
30
|
-
"
|
29
|
+
"types": "./*.d.ts",
|
30
|
+
"default": "./*.js"
|
31
31
|
}
|
32
32
|
},
|
33
33
|
"typesVersions": {
|
package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js
CHANGED
@@ -2,18 +2,18 @@
|
|
2
2
|
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
3
3
|
|
4
4
|
const idDescription = ( localize(
|
5
|
-
|
5
|
+
11634,
|
6
6
|
"The input's id is used to associate an input with a variable of the form ${input:id}."
|
7
7
|
));
|
8
|
-
const typeDescription = ( localize(
|
9
|
-
const descriptionDescription = ( localize(
|
10
|
-
const defaultDescription = ( localize(
|
8
|
+
const typeDescription = ( localize(11635, "The type of user input prompt to use."));
|
9
|
+
const descriptionDescription = ( localize(11636, "The description is shown when the user is prompted for input."));
|
10
|
+
const defaultDescription = ( localize(11637, "The default value for the input."));
|
11
11
|
const inputsSchema = {
|
12
12
|
definitions: {
|
13
13
|
inputs: {
|
14
14
|
type: 'array',
|
15
15
|
description: ( localize(
|
16
|
-
|
16
|
+
11638,
|
17
17
|
'User inputs. Used for defining user input prompts, such as free string input or a choice from several options.'
|
18
18
|
)),
|
19
19
|
items: {
|
@@ -33,7 +33,7 @@ const inputsSchema = {
|
|
33
33
|
enum: ['promptString'],
|
34
34
|
enumDescriptions: [
|
35
35
|
( localize(
|
36
|
-
|
36
|
+
11639,
|
37
37
|
"The 'promptString' type opens an input box to ask the user for input."
|
38
38
|
)),
|
39
39
|
]
|
@@ -49,7 +49,7 @@ const inputsSchema = {
|
|
49
49
|
password: {
|
50
50
|
type: 'boolean',
|
51
51
|
description: ( localize(
|
52
|
-
|
52
|
+
11640,
|
53
53
|
"Controls if a password input is shown. Password input hides the typed text."
|
54
54
|
)),
|
55
55
|
},
|
@@ -69,7 +69,7 @@ const inputsSchema = {
|
|
69
69
|
description: typeDescription,
|
70
70
|
enum: ['pickString'],
|
71
71
|
enumDescriptions: [
|
72
|
-
( localize(
|
72
|
+
( localize(11641, "The 'pickString' type shows a selection list.")),
|
73
73
|
]
|
74
74
|
},
|
75
75
|
description: {
|
@@ -82,7 +82,7 @@ const inputsSchema = {
|
|
82
82
|
},
|
83
83
|
options: {
|
84
84
|
type: 'array',
|
85
|
-
description: ( localize(
|
85
|
+
description: ( localize(11642, "An array of strings that defines the options for a quick pick.")),
|
86
86
|
items: {
|
87
87
|
oneOf: [
|
88
88
|
{
|
@@ -95,11 +95,11 @@ const inputsSchema = {
|
|
95
95
|
properties: {
|
96
96
|
label: {
|
97
97
|
type: 'string',
|
98
|
-
description: ( localize(
|
98
|
+
description: ( localize(11643, "Label for the option."))
|
99
99
|
},
|
100
100
|
value: {
|
101
101
|
type: 'string',
|
102
|
-
description: ( localize(
|
102
|
+
description: ( localize(11644, "Value for the option."))
|
103
103
|
}
|
104
104
|
}
|
105
105
|
}
|
@@ -122,26 +122,26 @@ const inputsSchema = {
|
|
122
122
|
description: typeDescription,
|
123
123
|
enum: ['command'],
|
124
124
|
enumDescriptions: [
|
125
|
-
( localize(
|
125
|
+
( localize(11645, "The 'command' type executes a command.")),
|
126
126
|
]
|
127
127
|
},
|
128
128
|
command: {
|
129
129
|
type: 'string',
|
130
|
-
description: ( localize(
|
130
|
+
description: ( localize(11646, "The command to execute for this input variable."))
|
131
131
|
},
|
132
132
|
args: {
|
133
133
|
oneOf: [
|
134
134
|
{
|
135
135
|
type: 'object',
|
136
|
-
description: ( localize(
|
136
|
+
description: ( localize(11647, "Optional arguments passed to the command."))
|
137
137
|
},
|
138
138
|
{
|
139
139
|
type: 'array',
|
140
|
-
description: ( localize(
|
140
|
+
description: ( localize(11647, "Optional arguments passed to the command."))
|
141
141
|
},
|
142
142
|
{
|
143
143
|
type: 'string',
|
144
|
-
description: ( localize(
|
144
|
+
description: ( localize(11647, "Optional arguments passed to the command."))
|
145
145
|
}
|
146
146
|
]
|
147
147
|
}
|
package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js
CHANGED
@@ -5,7 +5,7 @@ function applyDeprecatedVariableMessage(schema) {
|
|
5
5
|
schema.pattern = schema.pattern || '^(?!.*\\$\\{(env|config|command)\\.)';
|
6
6
|
schema.patternErrorMessage = schema.patternErrorMessage ||
|
7
7
|
( localize(
|
8
|
-
|
8
|
+
11648,
|
9
9
|
"'env.', 'config.' and 'command.' are deprecated, use 'env:', 'config:' and 'command:' instead."
|
10
10
|
));
|
11
11
|
}
|