@wu529778790/open-im 1.11.1-beta.2 → 1.11.1-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.
- package/dist/index.js +2 -2
- package/dist/shared/ai-task.js +1 -0
- 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/dist/shared/ai-task.js
CHANGED