@codingame/monaco-vscode-configuration-service-override 21.3.3 → 21.4.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/index.js +2 -2
- package/package.json +8 -8
package/index.js
CHANGED
|
@@ -36,7 +36,7 @@ import getServiceOverride$1, { initFile } from '@codingame/monaco-vscode-files-s
|
|
|
36
36
|
import { registerServiceInitializePreParticipant } from '@codingame/monaco-vscode-api/lifecycle';
|
|
37
37
|
import { getService, withReadyServices } from '@codingame/monaco-vscode-api/services';
|
|
38
38
|
import { unsupported, memoizedConstructor } from '@codingame/monaco-vscode-api/tools';
|
|
39
|
-
import { getWorkspaceIdentifier } from '@codingame/monaco-vscode-api/workbench';
|
|
39
|
+
import { getWorkbenchConstructionOptions, getWorkspaceIdentifier } from '@codingame/monaco-vscode-api/workbench';
|
|
40
40
|
|
|
41
41
|
const defaultUserConfigurationFile = URI.from({
|
|
42
42
|
scheme: Schemas.vscodeUserData,
|
|
@@ -69,7 +69,7 @@ const configurationRegistry = Registry.as(Extensions.Configuration);
|
|
|
69
69
|
let InjectedConfigurationService = class InjectedConfigurationService extends WorkspaceService {
|
|
70
70
|
constructor(workbenchEnvironmentService, userDataProfileService, userDataProfilesService, fileService, remoteAgentService, uriIdentityService, logService, policyService) {
|
|
71
71
|
const configurationCache = new ConfigurationCache([Schemas.file, Schemas.vscodeUserData, Schemas.tmp], workbenchEnvironmentService, fileService);
|
|
72
|
-
super({ configurationCache }, workbenchEnvironmentService, userDataProfileService, userDataProfilesService, fileService, remoteAgentService, uriIdentityService, logService, policyService);
|
|
72
|
+
super({ configurationCache, remoteAuthority: getWorkbenchConstructionOptions().remoteAuthority }, workbenchEnvironmentService, userDataProfileService, userDataProfilesService, fileService, remoteAgentService, uriIdentityService, logService, policyService);
|
|
73
73
|
}
|
|
74
74
|
};
|
|
75
75
|
InjectedConfigurationService = __decorate([
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-configuration-service-override",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - configuration service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-158b9837-fc78-5d9c-86f5-9134e4358643-common": "21.
|
|
19
|
-
"@codingame/monaco-vscode-422642f2-7e3a-5c1c-9e1e-1d3ef1817346-common": "21.
|
|
20
|
-
"@codingame/monaco-vscode-api": "21.
|
|
21
|
-
"@codingame/monaco-vscode-ce7c734f-7712-563c-9335-d7acb43306af-common": "21.
|
|
22
|
-
"@codingame/monaco-vscode-d987325e-3e05-53aa-b9ff-6f97476f64db-common": "21.
|
|
23
|
-
"@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common": "21.
|
|
24
|
-
"@codingame/monaco-vscode-files-service-override": "21.
|
|
18
|
+
"@codingame/monaco-vscode-158b9837-fc78-5d9c-86f5-9134e4358643-common": "21.4.0",
|
|
19
|
+
"@codingame/monaco-vscode-422642f2-7e3a-5c1c-9e1e-1d3ef1817346-common": "21.4.0",
|
|
20
|
+
"@codingame/monaco-vscode-api": "21.4.0",
|
|
21
|
+
"@codingame/monaco-vscode-ce7c734f-7712-563c-9335-d7acb43306af-common": "21.4.0",
|
|
22
|
+
"@codingame/monaco-vscode-d987325e-3e05-53aa-b9ff-6f97476f64db-common": "21.4.0",
|
|
23
|
+
"@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common": "21.4.0",
|
|
24
|
+
"@codingame/monaco-vscode-files-service-override": "21.4.0"
|
|
25
25
|
},
|
|
26
26
|
"main": "index.js",
|
|
27
27
|
"module": "index.js",
|