@codingame/monaco-vscode-api 15.0.1 → 15.0.2
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
|
@@ -1297,8 +1297,8 @@ registerSingleton(IPathService, PathService, InstantiationType.Delayed);
|
|
|
1297
1297
|
class ProductService {
|
|
1298
1298
|
constructor() {
|
|
1299
1299
|
this._serviceBrand = undefined;
|
|
1300
|
-
this.version = "1.98.
|
|
1301
|
-
this.commit = "
|
|
1300
|
+
this.version = "1.98.1";
|
|
1301
|
+
this.commit = "2fc07b811f760549dab9be9d2bedd06c51dfcb9a";
|
|
1302
1302
|
this.quality = 'oss';
|
|
1303
1303
|
this.nameShort = 'Code - OSS Dev';
|
|
1304
1304
|
this.nameLong = 'Code - OSS Dev';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-api",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.2",
|
|
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": "15.0.
|
|
19
|
-
"@codingame/monaco-vscode-environment-service-override": "15.0.
|
|
20
|
-
"@codingame/monaco-vscode-extensions-service-override": "15.0.
|
|
21
|
-
"@codingame/monaco-vscode-files-service-override": "15.0.
|
|
22
|
-
"@codingame/monaco-vscode-host-service-override": "15.0.
|
|
23
|
-
"@codingame/monaco-vscode-layout-service-override": "15.0.
|
|
24
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "15.0.
|
|
18
|
+
"@codingame/monaco-vscode-base-service-override": "15.0.2",
|
|
19
|
+
"@codingame/monaco-vscode-environment-service-override": "15.0.2",
|
|
20
|
+
"@codingame/monaco-vscode-extensions-service-override": "15.0.2",
|
|
21
|
+
"@codingame/monaco-vscode-files-service-override": "15.0.2",
|
|
22
|
+
"@codingame/monaco-vscode-host-service-override": "15.0.2",
|
|
23
|
+
"@codingame/monaco-vscode-layout-service-override": "15.0.2",
|
|
24
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "15.0.2",
|
|
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.98.
|
|
185
|
-
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.98.
|
|
184
|
+
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.98.1-f3054d0e-d620-44fc-97ab-4a97c3d7c636") {
|
|
185
|
+
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.98.1-f3054d0e-d620-44fc-97ab-4a97c3d7c636"}, ${window.monacoVscodeApiBuildId} is already loaded`);
|
|
186
186
|
}
|
|
187
|
-
window.monacoVscodeApiBuildId = "1.98.
|
|
187
|
+
window.monacoVscodeApiBuildId = "1.98.1-f3054d0e-d620-44fc-97ab-4a97c3d7c636";
|
|
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.98.
|
|
193
|
+
version: "1.98.1",
|
|
194
194
|
quality: 'stable',
|
|
195
|
-
commit: "
|
|
195
|
+
commit: "2fc07b811f760549dab9be9d2bedd06c51dfcb9a",
|
|
196
196
|
nameShort: 'Code - OSS',
|
|
197
197
|
nameLong: 'Code - OSS',
|
|
198
198
|
applicationName: 'code-oss',
|