befly 3.4.4 → 3.4.6

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.
@@ -51,7 +51,7 @@ export class Bootstrap {
51
51
  });
52
52
 
53
53
  const finalStartupTime = calcPerfTime(startTime);
54
- Logger.info(`Befly 服务器启动成功! 服务器启动耗时: ${finalStartupTime}`);
54
+ Logger.info(`${Env.APP_NAME} 服务器启动成功! 服务器启动耗时: ${finalStartupTime}`);
55
55
  Logger.info(`服务器监听地址: http://${Env.APP_HOST}:${Env.APP_PORT}`);
56
56
 
57
57
  if (callback && typeof callback === 'function') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "befly",
3
- "version": "3.4.4",
3
+ "version": "3.4.6",
4
4
  "description": "Befly - 为 Bun 专属打造的 TypeScript API 接口框架核心引擎",
5
5
  "type": "module",
6
6
  "private": false,
@@ -81,5 +81,5 @@
81
81
  "ora": "^9.0.0",
82
82
  "pathe": "^2.0.3"
83
83
  },
84
- "gitHead": "dca9c1118414acb32adbf58208a00c34f8fdff13"
84
+ "gitHead": "157f48d9170ab671919a4999050531469072bddf"
85
85
  }
package/router/root.ts CHANGED
@@ -18,7 +18,7 @@ export async function rootHandler(req: Request): Promise<Response> {
18
18
  return Response.json(
19
19
  {
20
20
  code: 0,
21
- msg: 'Befly 接口服务已启动',
21
+ msg: `${Env.APP_NAME} 接口服务已启动`,
22
22
  data: {
23
23
  mode: Env.NODE_ENV,
24
24
  timestamp: Date.now()