@codingame/monaco-vscode-configuration-service-override 4.5.0 → 4.5.1
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.d.ts +2 -5
- package/package.json +3 -3
- package/configuration.d.ts +0 -29
package/index.d.ts
CHANGED
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export {
|
|
3
|
-
export { IAnyWorkspaceIdentifier, IEmptyWorkspaceIdentifier, ISingleFolderWorkspaceIdentifier, IWorkspaceIdentifier } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
4
|
-
export { IStoredWorkspace, IWorkspaceFolderCreationData } from 'vscode/vscode/vs/platform/workspaces/common/workspaces';
|
|
5
|
-
export { IColorCustomizations, IThemeScopedColorCustomizations } from 'vscode/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
1
|
+
export * from 'vscode/service-override/configuration';
|
|
2
|
+
export { default } from 'vscode/service-override/configuration';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-configuration-service-override",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"vscode": "npm:@codingame/monaco-vscode-api@4.5.
|
|
30
|
-
"@codingame/monaco-vscode-files-service-override": "4.5.
|
|
29
|
+
"vscode": "npm:@codingame/monaco-vscode-api@4.5.1",
|
|
30
|
+
"@codingame/monaco-vscode-files-service-override": "4.5.1"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/configuration.d.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { IDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
2
|
-
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
3
|
-
import { IEditorOverrideServices } from 'vscode/vscode/vs/editor/standalone/browser/standaloneServices';
|
|
4
|
-
import { IConfigurationRegistry } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
5
|
-
export { ConfigurationScope, IConfigurationDefaults, IConfigurationNode } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
6
|
-
import { IFileWriteOptions } from 'vscode/vscode/vs/platform/files/common/files';
|
|
7
|
-
import { IAnyWorkspaceIdentifier } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
8
|
-
export { IAnyWorkspaceIdentifier, IEmptyWorkspaceIdentifier, ISingleFolderWorkspaceIdentifier, IWorkspaceIdentifier } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
9
|
-
|
|
10
|
-
declare const defaultUserConfigurationFile: URI;
|
|
11
|
-
/**
|
|
12
|
-
* Should be called only BEFORE the service are initialized to initialize the file on the filesystem before the configuration service initializes
|
|
13
|
-
*/
|
|
14
|
-
declare function initUserConfiguration(configurationJson: string, options?: Partial<IFileWriteOptions>, file?: URI): Promise<void>;
|
|
15
|
-
/**
|
|
16
|
-
* Can be called at any time after the services are initialized to update the user configuration
|
|
17
|
-
*/
|
|
18
|
-
declare function updateUserConfiguration(configurationJson: string): Promise<void>;
|
|
19
|
-
declare function getUserConfiguration(): Promise<string>;
|
|
20
|
-
declare function onUserConfigurationChange(callback: () => void): IDisposable;
|
|
21
|
-
declare const configurationRegistry: IConfigurationRegistry;
|
|
22
|
-
declare function reinitializeWorkspace(workspace: IAnyWorkspaceIdentifier): Promise<void>;
|
|
23
|
-
declare function getServiceOverride(): IEditorOverrideServices;
|
|
24
|
-
/**
|
|
25
|
-
* @deprecated Provide workspace via the services `initialize` function `configuration.workspaceProvider` parameter
|
|
26
|
-
*/
|
|
27
|
-
declare function getServiceOverride(defaultWorkspace?: URI | IAnyWorkspaceIdentifier): IEditorOverrideServices;
|
|
28
|
-
|
|
29
|
-
export { configurationRegistry, getServiceOverride as default, defaultUserConfigurationFile, getUserConfiguration, initUserConfiguration, onUserConfigurationChange, reinitializeWorkspace, updateUserConfiguration };
|