@codingame/monaco-vscode-editor-api 33.0.7 → 34.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,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-editor-api",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "34.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - monaco-editor compatible api",
|
|
6
6
|
"keywords": [],
|
|
7
|
+
"license": "MIT",
|
|
7
8
|
"author": {
|
|
8
9
|
"name": "CodinGame",
|
|
9
10
|
"url": "http://www.codingame.com"
|
|
10
11
|
},
|
|
11
|
-
"license": "MIT",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
14
|
"url": "git+ssh://git@github.com/CodinGame/monaco-vscode-api.git"
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "
|
|
18
|
+
"@codingame/monaco-vscode-api": "34.0.0"
|
|
19
19
|
},
|
|
20
20
|
"exports": {
|
|
21
21
|
".": "./esm/vs/editor/editor.api.js",
|
|
@@ -3933,7 +3933,7 @@ export namespace editor {
|
|
|
3933
3933
|
/**
|
|
3934
3934
|
* Diff Algorithm
|
|
3935
3935
|
*/
|
|
3936
|
-
diffAlgorithm?: "legacy" | "advanced";
|
|
3936
|
+
diffAlgorithm?: "legacy" | "advanced" | "advanced-external" | "advanced-wasm";
|
|
3937
3937
|
/**
|
|
3938
3938
|
* Whether the diff editor aria label should be verbose.
|
|
3939
3939
|
*/
|
|
@@ -6766,7 +6766,6 @@ export namespace languages {
|
|
|
6766
6766
|
* Describes language specific folding markers such as '#region' and '#endregion'.
|
|
6767
6767
|
* The start and end regexes will be tested against the contents of all lines and must be designed efficiently:
|
|
6768
6768
|
* - the regex should start with '^'
|
|
6769
|
-
* - regexp flags (i, g) are ignored
|
|
6770
6769
|
*/
|
|
6771
6770
|
export interface FoldingMarkers {
|
|
6772
6771
|
start: RegExp;
|