@codingame/monaco-vscode-api 20.1.0 → 20.1.1
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-api",
|
|
3
|
-
"version": "20.1.
|
|
3
|
+
"version": "20.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-base-service-override": "20.1.
|
|
19
|
-
"@codingame/monaco-vscode-environment-service-override": "20.1.
|
|
20
|
-
"@codingame/monaco-vscode-extensions-service-override": "20.1.
|
|
21
|
-
"@codingame/monaco-vscode-files-service-override": "20.1.
|
|
22
|
-
"@codingame/monaco-vscode-host-service-override": "20.1.
|
|
23
|
-
"@codingame/monaco-vscode-layout-service-override": "20.1.
|
|
24
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "20.1.
|
|
18
|
+
"@codingame/monaco-vscode-base-service-override": "20.1.1",
|
|
19
|
+
"@codingame/monaco-vscode-environment-service-override": "20.1.1",
|
|
20
|
+
"@codingame/monaco-vscode-extensions-service-override": "20.1.1",
|
|
21
|
+
"@codingame/monaco-vscode-files-service-override": "20.1.1",
|
|
22
|
+
"@codingame/monaco-vscode-host-service-override": "20.1.1",
|
|
23
|
+
"@codingame/monaco-vscode-layout-service-override": "20.1.1",
|
|
24
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "20.1.1",
|
|
25
25
|
"@vscode/iconv-lite-umd": "0.7.0",
|
|
26
26
|
"dompurify": "3.2.6",
|
|
27
27
|
"jschardet": "3.1.4",
|
package/services.js
CHANGED
|
@@ -392,10 +392,10 @@ export { IAuthenticationQueryService } from './vscode/src/vs/workbench/services/
|
|
|
392
392
|
export { ICoreExperimentationService } from './vscode/src/vs/workbench/services/coreExperimentation/common/coreExperimentationService.service.js';
|
|
393
393
|
export { IWorkbenchMcpManagementService } from './vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.service.js';
|
|
394
394
|
|
|
395
|
-
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "360a4e4fd251bfce169a4ddf857c7d25d1ad40da-
|
|
396
|
-
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"360a4e4fd251bfce169a4ddf857c7d25d1ad40da-
|
|
395
|
+
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "360a4e4fd251bfce169a4ddf857c7d25d1ad40da-5c7c78fd-79be-449c-98e9-c6acc6d05a7d") {
|
|
396
|
+
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"360a4e4fd251bfce169a4ddf857c7d25d1ad40da-5c7c78fd-79be-449c-98e9-c6acc6d05a7d"}, ${window.monacoVscodeApiBuildId} is already loaded`);
|
|
397
397
|
}
|
|
398
|
-
window.monacoVscodeApiBuildId = "360a4e4fd251bfce169a4ddf857c7d25d1ad40da-
|
|
398
|
+
window.monacoVscodeApiBuildId = "360a4e4fd251bfce169a4ddf857c7d25d1ad40da-5c7c78fd-79be-449c-98e9-c6acc6d05a7d";
|
|
399
399
|
async function initialize(overrides, container = document.body, configuration = {}, env) {
|
|
400
400
|
checkServicesNotInitialized();
|
|
401
401
|
injectCss(container);
|
|
@@ -5,8 +5,8 @@ var product = {
|
|
|
5
5
|
...productJson,
|
|
6
6
|
quality: 'stable',
|
|
7
7
|
version: '1.103.1',
|
|
8
|
-
commit: '
|
|
9
|
-
date: '2025-08-
|
|
8
|
+
commit: '360a4e4fd251bfce169a4ddf857c7d25d1ad40da',
|
|
9
|
+
date: '2025-08-14T13:28:09.738Z',
|
|
10
10
|
...(globalThis._VSCODE_PRODUCT_JSON ?? {})
|
|
11
11
|
};
|
|
12
12
|
|