@codingame/monaco-vscode-configuration-service-override 3.1.2 → 3.2.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/configuration.d.ts +1 -1
- package/index.d.ts +2 -1
- package/package.json +9 -10
package/configuration.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IEditorOverrideServices } from 'vscode/vscode/vs/editor/standalone/browser/standaloneServices';
|
|
2
2
|
import { IConfigurationRegistry } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
3
|
-
export {
|
|
3
|
+
export { IConfigurationDefaults, IConfigurationNode } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
4
4
|
import { IFileWriteOptions } from 'vscode/vscode/vs/platform/files/common/files';
|
|
5
5
|
import { IAnyWorkspaceIdentifier } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
6
6
|
export { IAnyWorkspaceIdentifier, IEmptyWorkspaceIdentifier, ISingleFolderWorkspaceIdentifier, IWorkspaceIdentifier } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
package/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { configurationRegistry, default, defaultUserConfigurationFile, getUserConfiguration, initUserConfiguration, onUserConfigurationChange, reinitializeWorkspace, updateUserConfiguration } from './configuration.js';
|
|
2
|
-
export { ConfigurationScope
|
|
2
|
+
export { ConfigurationScope } from 'vscode/src/vs/platform/configuration/common/configurationRegistry';
|
|
3
|
+
export { IConfigurationDefaults, IConfigurationNode } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
3
4
|
export { IColorCustomizations, IThemeScopedColorCustomizations } from 'vscode/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
4
5
|
export { IAnyWorkspaceIdentifier, IEmptyWorkspaceIdentifier, ISingleFolderWorkspaceIdentifier, IWorkspaceIdentifier } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
5
6
|
export { IStoredWorkspace, IWorkspaceFolderCreationData } from 'vscode/vscode/vs/platform/workspaces/common/workspaces';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-configuration-service-override",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,14 +18,13 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@3.
|
|
22
|
-
"vscode-
|
|
23
|
-
"@codingame/monaco-vscode-
|
|
24
|
-
"@codingame/monaco-vscode-
|
|
25
|
-
"@codingame/monaco-vscode-
|
|
26
|
-
"@codingame/monaco-vscode-
|
|
27
|
-
"@codingame/monaco-vscode-
|
|
28
|
-
"@codingame/monaco-vscode-
|
|
29
|
-
"@codingame/monaco-vscode-base-service-override": "3.1.2"
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@3.2.0",
|
|
22
|
+
"@codingame/monaco-vscode-files-service-override": "3.2.0",
|
|
23
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "3.2.0",
|
|
24
|
+
"@codingame/monaco-vscode-extensions-service-override": "3.2.0",
|
|
25
|
+
"@codingame/monaco-vscode-environment-service-override": "3.2.0",
|
|
26
|
+
"@codingame/monaco-vscode-layout-service-override": "3.2.0",
|
|
27
|
+
"@codingame/monaco-vscode-host-service-override": "3.2.0",
|
|
28
|
+
"@codingame/monaco-vscode-base-service-override": "3.2.0"
|
|
30
29
|
}
|
|
31
30
|
}
|