- 新增 pino/pino-pretty/pino-roll 依赖,实现结构化日志(console pretty + file JSONL rolling) - 新增 Logger 接口及 PinoLoggerWrapper/ConsoleFallbackLogger/NoopLogger/MemoryLogger 实现 - 新增 src/pino-roll.d.ts 类型声明 - 新增 server.storage.dataDir 配置(默认 ./data,相对路径基于配置文件目录) - 新增 server.logging 配置(level/console/file/rotation,支持变量引用) - 配置文件从可选改为必填,parseRuntimeArgs 无参数时抛错 - bootstrap 创建 logger、确保 dataDir、shutdown flush、失败路径 fallback - startServer 接收 logger 并输出结构化监听日志 - ESLint 新增 no-restricted-syntax 禁止 src/server 直接 console.*(排除 logger.ts) - 更新 config.example.yaml、README.md、DEVELOPMENT.md 同步配置和日志文档 - 完善测试覆盖:logger、config、schema、bootstrap 共 150 个测试通过
171 lines
4.9 KiB
TypeScript
171 lines
4.9 KiB
TypeScript
import { readdir, rm, writeFile } from "node:fs/promises";
|
|
import { join, relative, sep } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
import { APP } from "../src/shared/app";
|
|
import { validateVersion } from "./bump-version-logic";
|
|
|
|
const projectRoot = fileURLToPath(new URL("..", import.meta.url));
|
|
const distWebDir = join(projectRoot, "dist/web");
|
|
const buildDir = join(projectRoot, ".build");
|
|
const executablePath = join(projectRoot, `dist/${APP.name}`);
|
|
const packageJsonPath = join(projectRoot, "package.json");
|
|
|
|
async function build() {
|
|
try {
|
|
await viteBuild();
|
|
await codeGeneration();
|
|
await bunCompile();
|
|
await cleanup();
|
|
console.log(`Built executable: ${executablePath}`);
|
|
} catch (error) {
|
|
await cleanup();
|
|
console.error("Build failed:", error);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
async function bunCompile() {
|
|
console.log("Step 3/3: Bun compile...");
|
|
await rm(executablePath, { force: true });
|
|
|
|
const target = process.env["BUN_TARGET"] ?? process.env["BUILD_TARGET"];
|
|
const result = await Bun.build({
|
|
compile: target
|
|
? {
|
|
autoloadBunfig: true,
|
|
autoloadDotenv: true,
|
|
outfile: executablePath,
|
|
target: target as Bun.Build.CompileTarget,
|
|
}
|
|
: {
|
|
autoloadBunfig: true,
|
|
autoloadDotenv: true,
|
|
outfile: executablePath,
|
|
},
|
|
entrypoints: [join(buildDir, "server-entry.ts")],
|
|
minify: true,
|
|
sourcemap: "linked",
|
|
});
|
|
|
|
if (!result.success) {
|
|
console.error("Bun compile failed:", result.logs);
|
|
await cleanup();
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
async function cleanup() {
|
|
await rm(buildDir, { force: true, recursive: true });
|
|
}
|
|
|
|
async function codeGeneration() {
|
|
console.log("Step 2/3: Code generation...");
|
|
await rm(buildDir, { force: true, recursive: true });
|
|
await Bun.write(join(buildDir, ".gitkeep"), "");
|
|
|
|
const packageJson = (await Bun.file(packageJsonPath).json()) as { version: string };
|
|
const version = packageJson.version;
|
|
if (typeof version !== "string") {
|
|
console.error("package.json does not have a valid version field");
|
|
process.exit(1);
|
|
}
|
|
validateVersion(version);
|
|
|
|
const allFiles = await scanDir(distWebDir, "/");
|
|
const importLines: string[] = [];
|
|
const fileEntries: string[] = [];
|
|
let indexHtmlVar = "";
|
|
|
|
for (let i = 0; i < allFiles.length; i++) {
|
|
const urlPath = allFiles[i]!;
|
|
const varName = `f${i}`;
|
|
const filePath = toImportSpecifier(buildDir, join(distWebDir, urlPath.slice(1)));
|
|
importLines.push(`import ${varName} from "./${filePath}" with { type: "file" };`);
|
|
|
|
if (urlPath === "/index.html") {
|
|
indexHtmlVar = varName;
|
|
} else {
|
|
fileEntries.push(` "${urlPath}": Bun.file(${varName}),`);
|
|
}
|
|
}
|
|
|
|
if (!indexHtmlVar) {
|
|
console.error("index.html not found in dist/web/");
|
|
process.exit(1);
|
|
}
|
|
|
|
const staticAssetsTs = [
|
|
`import type { StaticAssets } from "../src/server/static";`,
|
|
"",
|
|
...importLines,
|
|
"",
|
|
`export const staticAssets: StaticAssets = {`,
|
|
` files: {`,
|
|
...fileEntries,
|
|
` },`,
|
|
` indexHtml: Bun.file(${indexHtmlVar}),`,
|
|
`};`,
|
|
"",
|
|
].join("\n");
|
|
|
|
await writeFile(join(buildDir, "static-assets.ts"), staticAssetsTs);
|
|
|
|
const serverEntryTs = [
|
|
`import { bootstrap } from "../src/server/bootstrap";`,
|
|
`import { parseRuntimeArgs } from "../src/server/config";`,
|
|
`import { createConsoleFallback } from "../src/server/logger";`,
|
|
`import { staticAssets } from "./static-assets";`,
|
|
"",
|
|
`const APP_VERSION = "${version}" as const;`,
|
|
"",
|
|
`async function main() {`,
|
|
` const { configPath } = parseRuntimeArgs();`,
|
|
` await bootstrap({ configPath, mode: "production", staticAssets, version: APP_VERSION });`,
|
|
`}`,
|
|
"",
|
|
`void main().catch((error) => {`,
|
|
` createConsoleFallback().fatal(\`启动失败: \${error instanceof Error ? error.message : String(error)}\`);`,
|
|
` process.exit(1);`,
|
|
`});`,
|
|
"",
|
|
].join("\n");
|
|
|
|
await writeFile(join(buildDir, "server-entry.ts"), serverEntryTs);
|
|
}
|
|
|
|
async function scanDir(dir: string, prefix: string): Promise<string[]> {
|
|
const entries = await readdir(dir, { withFileTypes: true });
|
|
const paths: string[] = [];
|
|
for (const entry of entries) {
|
|
const fullPath = join(dir, entry.name);
|
|
const urlPath = `${prefix}${entry.name}`;
|
|
if (entry.isDirectory()) {
|
|
paths.push(...(await scanDir(fullPath, `${urlPath}/`)));
|
|
} else {
|
|
paths.push(urlPath);
|
|
}
|
|
}
|
|
return paths;
|
|
}
|
|
|
|
function toImportSpecifier(fromDir: string, targetPath: string) {
|
|
return relative(fromDir, targetPath).split(sep).join("/");
|
|
}
|
|
|
|
async function viteBuild() {
|
|
console.log("Step 1/3: Vite build...");
|
|
const proc = Bun.spawn(["bunx", "--bun", "vite", "build"], {
|
|
cwd: projectRoot,
|
|
stderr: "inherit",
|
|
stdout: "inherit",
|
|
});
|
|
const exitCode = await proc.exited;
|
|
if (exitCode !== 0) {
|
|
console.error("Vite build failed");
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
await build();
|