@opensumi/ide-dev-tool 3.6.4-next-1734515084.0 → 3.6.4

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": "@opensumi/ide-dev-tool",
3
- "version": "3.6.4-next-1734515084.0",
3
+ "version": "3.6.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git@github.com:opensumi/core.git"
@@ -38,5 +38,5 @@
38
38
  "webpack-cli": "^5.1.4",
39
39
  "webpack-merge": "^5.10.0"
40
40
  },
41
- "gitHead": "d6bfe7283fed44b203493d78403950269e86a925"
41
+ "gitHead": "23eb1f073234e9e79a32f81c7384924fc459aa69"
42
42
  }
@@ -85,7 +85,7 @@ class MockLogServiceForClient {
85
85
  async log() {}
86
86
  async error() {}
87
87
  async critical() {}
88
- async disposeLogger() {}
88
+ async dispose() {}
89
89
  async disposeAll() {
90
90
  this.hasDisposeAll = true;
91
91
  }
package/src/server.ts CHANGED
@@ -88,8 +88,6 @@ export async function startServer(
88
88
  */
89
89
  extHost:
90
90
  process.env.EXTENSION_HOST_ENTRY || path.join(__dirname, '../../../packages/extension/lib/hosted/ext.process.js'),
91
- watcherHost:
92
- process.env.WATCHER_HOST_ENTRY || path.join(__dirname, '../../../packages/file-service/lib/node/hosted/watcher.process.js'),
93
91
  onDidCreateExtensionHostProcess: (extHostProcess) => {
94
92
  console.log(`Extension host process ${extHostProcess.pid} created`);
95
93
  },