@wu529778790/open-im 1.11.1-beta.2 → 1.11.1-beta.3

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/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -154,7 +154,7 @@ function buildStartupMessage(platform, appVersion, aiCommand, defaultWorkDir, se
154
154
  `📱 平台: ${platformName}`,
155
155
  `🤖 AI: ${toolName}`,
156
156
  `📁 目录: ${dir}`,
157
- ].join("\n");
157
+ ].join("\n\n");
158
158
  }
159
159
  function buildShutdownMessage(uptimeMinutes) {
160
160
  const uptime = uptimeMinutes < 1 ? '< 1' : String(uptimeMinutes);
@@ -162,7 +162,7 @@ function buildShutdownMessage(uptimeMinutes) {
162
162
  `🛑 open-im 正在关闭`,
163
163
  "",
164
164
  `⏱️ 运行时长: ${uptime} 分钟`,
165
- ].join("\n");
165
+ ].join("\n\n");
166
166
  }
167
167
  export async function main() {
168
168
  const startupCwd = process.cwd();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wu529778790/open-im",
3
- "version": "1.11.1-beta.2",
3
+ "version": "1.11.1-beta.3",
4
4
  "description": "Multi-platform IM bridge for AI CLI tools (Claude, Codex, CodeBuddy)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",