@codingame/monaco-vscode-api 21.2.1 → 21.3.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-api",
3
- "version": "21.2.1",
3
+ "version": "21.3.0",
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": "21.2.1",
19
- "@codingame/monaco-vscode-environment-service-override": "21.2.1",
20
- "@codingame/monaco-vscode-extensions-service-override": "21.2.1",
21
- "@codingame/monaco-vscode-files-service-override": "21.2.1",
22
- "@codingame/monaco-vscode-host-service-override": "21.2.1",
23
- "@codingame/monaco-vscode-layout-service-override": "21.2.1",
24
- "@codingame/monaco-vscode-quickaccess-service-override": "21.2.1",
18
+ "@codingame/monaco-vscode-base-service-override": "21.3.0",
19
+ "@codingame/monaco-vscode-environment-service-override": "21.3.0",
20
+ "@codingame/monaco-vscode-extensions-service-override": "21.3.0",
21
+ "@codingame/monaco-vscode-files-service-override": "21.3.0",
22
+ "@codingame/monaco-vscode-host-service-override": "21.3.0",
23
+ "@codingame/monaco-vscode-layout-service-override": "21.3.0",
24
+ "@codingame/monaco-vscode-quickaccess-service-override": "21.3.0",
25
25
  "@vscode/iconv-lite-umd": "0.7.0",
26
26
  "dompurify": "3.2.7",
27
27
  "jschardet": "3.1.4",
package/services.js CHANGED
@@ -400,10 +400,10 @@ export { IInlineCompletionsUnificationService } from './vscode/src/vs/workbench/
400
400
  export { IMcpGalleryManifestService } from './vscode/src/vs/platform/mcp/common/mcpGalleryManifest.service.js';
401
401
  export { IDataChannelService } from './vscode/src/vs/platform/dataChannel/common/dataChannel.service.js';
402
402
 
403
- if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.104.1-af42cb79-0f3f-4e9d-8957-20a99c494a2f") {
404
- throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.104.1-af42cb79-0f3f-4e9d-8957-20a99c494a2f"}, ${window.monacoVscodeApiBuildId} is already loaded`);
403
+ if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.104.2-7a136c25-e70d-4449-840e-13b645033b64") {
404
+ throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.104.2-7a136c25-e70d-4449-840e-13b645033b64"}, ${window.monacoVscodeApiBuildId} is already loaded`);
405
405
  }
406
- window.monacoVscodeApiBuildId = "1.104.1-af42cb79-0f3f-4e9d-8957-20a99c494a2f";
406
+ window.monacoVscodeApiBuildId = "1.104.2-7a136c25-e70d-4449-840e-13b645033b64";
407
407
  function registerCommands(options) {
408
408
  function asMenuId(menu) {
409
409
  switch (menu) {
@@ -4,9 +4,9 @@ import productJson from '../../../../../product.json.js';
4
4
  var product = {
5
5
  ...productJson,
6
6
  quality: 'stable',
7
- version: '1.104.1',
8
- commit: '0f0d87fa9e96c856c5212fc86db137ac0d783365',
9
- date: '2025-09-23T17:53:18.388Z',
7
+ version: '1.104.2',
8
+ commit: 'e3a5acfb517a443235981655413d566533107e92',
9
+ date: '2025-09-26T13:27:59.365Z',
10
10
  ...(globalThis._VSCODE_PRODUCT_JSON ?? {})
11
11
  };
12
12