@codingame/monaco-vscode-api 14.0.4 → 14.0.5
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 +8 -8
- package/services.js +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-api",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.5",
|
|
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": "14.0.
|
|
19
|
-
"@codingame/monaco-vscode-environment-service-override": "14.0.
|
|
20
|
-
"@codingame/monaco-vscode-extensions-service-override": "14.0.
|
|
21
|
-
"@codingame/monaco-vscode-files-service-override": "14.0.
|
|
22
|
-
"@codingame/monaco-vscode-host-service-override": "14.0.
|
|
23
|
-
"@codingame/monaco-vscode-layout-service-override": "14.0.
|
|
24
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "14.0.
|
|
18
|
+
"@codingame/monaco-vscode-base-service-override": "14.0.5",
|
|
19
|
+
"@codingame/monaco-vscode-environment-service-override": "14.0.5",
|
|
20
|
+
"@codingame/monaco-vscode-extensions-service-override": "14.0.5",
|
|
21
|
+
"@codingame/monaco-vscode-files-service-override": "14.0.5",
|
|
22
|
+
"@codingame/monaco-vscode-host-service-override": "14.0.5",
|
|
23
|
+
"@codingame/monaco-vscode-layout-service-override": "14.0.5",
|
|
24
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "14.0.5",
|
|
25
25
|
"marked": "14.0.0"
|
|
26
26
|
},
|
|
27
27
|
"main": "services.js",
|
package/services.js
CHANGED
|
@@ -180,10 +180,10 @@ export { IKeybindingService } from './vscode/src/vs/platform/keybinding/common/k
|
|
|
180
180
|
export { ISecretStorageService } from './vscode/src/vs/platform/secrets/common/secrets.service.js';
|
|
181
181
|
export { ConfigurationTarget } from './vscode/src/vs/platform/configuration/common/configuration.js';
|
|
182
182
|
|
|
183
|
-
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.97.2-
|
|
184
|
-
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.97.2-
|
|
183
|
+
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.97.2-ee0e2c68-8039-4ccb-b3c0-1068d9745c11") {
|
|
184
|
+
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.97.2-ee0e2c68-8039-4ccb-b3c0-1068d9745c11"}, ${window.monacoVscodeApiBuildId} is already loaded`);
|
|
185
185
|
}
|
|
186
|
-
window.monacoVscodeApiBuildId = "1.97.2-
|
|
186
|
+
window.monacoVscodeApiBuildId = "1.97.2-ee0e2c68-8039-4ccb-b3c0-1068d9745c11";
|
|
187
187
|
async function initialize(overrides, container = document.body, configuration = {}, env) {
|
|
188
188
|
checkServicesNotInitialized();
|
|
189
189
|
initialize$1(container, configuration, env);
|