@codingame/monaco-vscode-api 16.0.4 → 16.0.6
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": "16.0.
|
|
3
|
+
"version": "16.0.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor",
|
|
6
6
|
"keywords": [],
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@c4312/eventsource-umd": "3.0.5",
|
|
19
|
-
"@codingame/monaco-vscode-base-service-override": "16.0.
|
|
20
|
-
"@codingame/monaco-vscode-environment-service-override": "16.0.
|
|
21
|
-
"@codingame/monaco-vscode-extensions-service-override": "16.0.
|
|
22
|
-
"@codingame/monaco-vscode-files-service-override": "16.0.
|
|
23
|
-
"@codingame/monaco-vscode-host-service-override": "16.0.
|
|
24
|
-
"@codingame/monaco-vscode-layout-service-override": "16.0.
|
|
25
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "16.0.
|
|
19
|
+
"@codingame/monaco-vscode-base-service-override": "16.0.6",
|
|
20
|
+
"@codingame/monaco-vscode-environment-service-override": "16.0.6",
|
|
21
|
+
"@codingame/monaco-vscode-extensions-service-override": "16.0.6",
|
|
22
|
+
"@codingame/monaco-vscode-files-service-override": "16.0.6",
|
|
23
|
+
"@codingame/monaco-vscode-host-service-override": "16.0.6",
|
|
24
|
+
"@codingame/monaco-vscode-layout-service-override": "16.0.6",
|
|
25
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "16.0.6",
|
|
26
26
|
"marked": "14.0.0"
|
|
27
27
|
},
|
|
28
28
|
"main": "services.js",
|
package/services.js
CHANGED
|
@@ -181,10 +181,10 @@ export { IKeybindingService } from './vscode/src/vs/platform/keybinding/common/k
|
|
|
181
181
|
export { ISecretStorageService } from './vscode/src/vs/platform/secrets/common/secrets.service.js';
|
|
182
182
|
export { ConfigurationTarget } from './vscode/src/vs/platform/configuration/common/configuration.js';
|
|
183
183
|
|
|
184
|
-
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.99.3-
|
|
185
|
-
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.99.3-
|
|
184
|
+
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.99.3-bb4f80c6-aee4-4928-9291-2f3199966d2a") {
|
|
185
|
+
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.99.3-bb4f80c6-aee4-4928-9291-2f3199966d2a"}, ${window.monacoVscodeApiBuildId} is already loaded`);
|
|
186
186
|
}
|
|
187
|
-
window.monacoVscodeApiBuildId = "1.99.3-
|
|
187
|
+
window.monacoVscodeApiBuildId = "1.99.3-bb4f80c6-aee4-4928-9291-2f3199966d2a";
|
|
188
188
|
async function initialize(overrides, container = document.body, configuration = {}, env) {
|
|
189
189
|
checkServicesNotInitialized();
|
|
190
190
|
initialize$1(container, configuration, env);
|