@lvce-editor/shared-process 0.16.6 → 0.16.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/shared-process",
3
- "version": "0.16.6",
3
+ "version": "0.16.7",
4
4
  "description": "Utility package for @lvce-editor/server",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -17,9 +17,9 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "@babel/code-frame": "^7.22.5",
20
- "@lvce-editor/extension-host": "0.16.6",
21
- "@lvce-editor/extension-host-helper-process": "0.16.6",
22
- "@lvce-editor/pty-host": "0.16.6",
20
+ "@lvce-editor/extension-host": "0.16.7",
21
+ "@lvce-editor/extension-host-helper-process": "0.16.7",
22
+ "@lvce-editor/pty-host": "0.16.7",
23
23
  "debug": "^4.3.4",
24
24
  "execa": "^7.1.1",
25
25
  "exit-hook": "^3.2.0",
@@ -153,6 +153,7 @@ export const getModuleId = (commandId) => {
153
153
  case 'Platform.getRecentlyOpenedPath':
154
154
  case 'Platform.getTestPath':
155
155
  case 'Platform.getUserSettingsPath':
156
+ case 'Platform.getUserKeyBindingsPath':
156
157
  case 'Platform.getVersion':
157
158
  case 'Platform.setEnvironmentVariables':
158
159
  return ModuleId.Platform
@@ -24,4 +24,5 @@ export const Commands = {
24
24
  getUserSettingsPath: Platform.getUserSettingsPath,
25
25
  getVersion: Platform.getVersion,
26
26
  setEnvironmentVariables: Platform.setEnvironmentVariables,
27
+ getUserKeyBindingsPath: Platform.getUserKeyBindingsPath,
27
28
  }
@@ -76,6 +76,10 @@ export const getUserSettingsPath = () => {
76
76
  return Path.join(configDir, 'settings.json')
77
77
  }
78
78
 
79
+ export const getUserKeyBindingsPath = () => {
80
+ return Path.join(configDir, 'keybindings.json')
81
+ }
82
+
79
83
  export const getExtensionHostPath = async () => {
80
84
  const { extensionHostPath } = await import(
81
85
  '@lvce-editor/extension-host'
@@ -165,11 +169,11 @@ export const getSetupName = () => {
165
169
  return 'Lvce-Setup'
166
170
  }
167
171
 
168
- export const version = '0.16.6'
172
+ export const version = '0.16.7'
169
173
 
170
- export const commit = '68e8dc4'
174
+ export const commit = '8f3e750'
171
175
 
172
- export const date = '2023-07-06T15:36:10.000Z'
176
+ export const date = '2023-07-07T12:20:25.000Z'
173
177
 
174
178
  export const getVersion = () => {
175
179
  return version