@codingame/monaco-vscode-api 16.0.2 → 16.0.3
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/missing-services.js +2 -2
- package/package.json +8 -8
- package/services.js +5 -5
package/missing-services.js
CHANGED
|
@@ -1304,8 +1304,8 @@ registerSingleton(IPathService, PathService, InstantiationType.Delayed);
|
|
|
1304
1304
|
class ProductService {
|
|
1305
1305
|
constructor() {
|
|
1306
1306
|
this._serviceBrand = undefined;
|
|
1307
|
-
this.version = "1.99.
|
|
1308
|
-
this.commit = "
|
|
1307
|
+
this.version = "1.99.3";
|
|
1308
|
+
this.commit = "17baf841131aa23349f217ca7c570c76ee87b957";
|
|
1309
1309
|
this.quality = 'oss';
|
|
1310
1310
|
this.nameShort = 'Code - OSS Dev';
|
|
1311
1311
|
this.nameLong = 'Code - OSS Dev';
|
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.3",
|
|
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": "16.0.
|
|
19
|
-
"@codingame/monaco-vscode-environment-service-override": "16.0.
|
|
20
|
-
"@codingame/monaco-vscode-extensions-service-override": "16.0.
|
|
21
|
-
"@codingame/monaco-vscode-files-service-override": "16.0.
|
|
22
|
-
"@codingame/monaco-vscode-host-service-override": "16.0.
|
|
23
|
-
"@codingame/monaco-vscode-layout-service-override": "16.0.
|
|
24
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "16.0.
|
|
18
|
+
"@codingame/monaco-vscode-base-service-override": "16.0.3",
|
|
19
|
+
"@codingame/monaco-vscode-environment-service-override": "16.0.3",
|
|
20
|
+
"@codingame/monaco-vscode-extensions-service-override": "16.0.3",
|
|
21
|
+
"@codingame/monaco-vscode-files-service-override": "16.0.3",
|
|
22
|
+
"@codingame/monaco-vscode-host-service-override": "16.0.3",
|
|
23
|
+
"@codingame/monaco-vscode-layout-service-override": "16.0.3",
|
|
24
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "16.0.3",
|
|
25
25
|
"marked": "14.0.0"
|
|
26
26
|
},
|
|
27
27
|
"main": "services.js",
|
package/services.js
CHANGED
|
@@ -181,18 +181,18 @@ 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.
|
|
185
|
-
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.99.
|
|
184
|
+
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.99.3-6fbbdba3-e1d0-4e7a-a048-11f5a59e49c5") {
|
|
185
|
+
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.99.3-6fbbdba3-e1d0-4e7a-a048-11f5a59e49c5"}, ${window.monacoVscodeApiBuildId} is already loaded`);
|
|
186
186
|
}
|
|
187
|
-
window.monacoVscodeApiBuildId = "1.99.
|
|
187
|
+
window.monacoVscodeApiBuildId = "1.99.3-6fbbdba3-e1d0-4e7a-a048-11f5a59e49c5";
|
|
188
188
|
async function initialize(overrides, container = document.body, configuration = {}, env) {
|
|
189
189
|
checkServicesNotInitialized();
|
|
190
190
|
initialize$1(container, configuration, env);
|
|
191
191
|
const instantiationService = StandaloneServices.initialize({
|
|
192
192
|
[IProductService.toString()]: mixin({
|
|
193
|
-
version: "1.99.
|
|
193
|
+
version: "1.99.3",
|
|
194
194
|
quality: 'stable',
|
|
195
|
-
commit: "
|
|
195
|
+
commit: "17baf841131aa23349f217ca7c570c76ee87b957",
|
|
196
196
|
nameShort: 'Code - OSS',
|
|
197
197
|
nameLong: 'Code - OSS',
|
|
198
198
|
applicationName: 'code-oss',
|