ee-core 2.7.0-beta.3 → 2.7.0-beta.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.
Files changed (2) hide show
  1. package/cross/index.js +1 -1
  2. package/package.json +1 -1
package/cross/index.js CHANGED
@@ -65,7 +65,7 @@ const CrossLanguageService = {
65
65
  // Launch executable program
66
66
  const coreProcess = crossSpawn(cmdPath, cmdArgs, { stdio: 'inherit', detached: false });
67
67
  coreProcess.on('close', (code, signal) => {
68
- Log.coreLogger.info(`[ee-core] [cross/run] [pid=${coreProcess.pid}, port=${port}] exited with code: ${code}, signal: ${signal}`);
68
+ Log.coreLogger.info(`[ee-core] [cross/run] [pid=${coreProcess.pid}, port=${confPort}] exited with code: ${code}, signal: ${signal}`);
69
69
  if (0 !== code) {
70
70
  // 弹错误窗口
71
71
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ee-core",
3
- "version": "2.7.0-beta.3",
3
+ "version": "2.7.0-beta.4",
4
4
  "description": "ee core",
5
5
  "main": "index.js",
6
6
  "scripts": {