Files
FastGPT/projects/app/scripts/build-workers.ts
T
Ryo 289da0f7b0 chore: bump pro submodule for hydration stability (#6808)
* sandbox-sync-agent

* refactor: host pro as submodule

* chore: checkpoint host pro restructure

* refactor workspace test layout and startup init

* chore: update next turbopack setup

* chore: snapshot current work before actions fix

* chore: update pro submodule

* chore: point pro submodule url to upstream https

* fix: Dockerfile

* chore: update pro submodule

* ci: support private pro submodule token and skip fork jobs

* fix(ci): build sdk workspace deps before code-sandbox bundle

* fix(app): exclude vitest configs from production typecheck

* fix(app-image): build sdk packages before next build

* fix(ci): align dockerfiles with workspace sdk build flow

* chore(docker): upgrade node20 docker images to node24

* fix(ci): read admin coverage output path in pro test workflow

* fix(app-image): include next-i18next config and locale assets

* chore: update pro submodule

* chore: do not specify branch for submodule

* chore: remove most ts-nocheck sign

* chore: update pro submodule

* chore: remove sandbox-agent-sync package

* chore: do not modify "pushData" file logic

* fix: health check

* chore: restore dev axios proxy state

* fix: test-fastgpt report workflow

* fix: use valid vitest coverage action inputs
2026-04-27 17:44:12 +08:00

160 lines
5.7 KiB
TypeScript

import { build, BuildOptions, context } from 'esbuild';
import fs from 'fs';
import path from 'path';
// 项目路径
const ROOT_DIR = path.resolve(__dirname, '../../..');
const WORKER_SOURCE_DIR = path.join(ROOT_DIR, 'packages/service/worker');
const WORKER_OUTPUT_DIR = path.join(__dirname, '../worker');
const OTEL_SDK_DIR = path.join(ROOT_DIR, 'sdk/otel/src');
/**
* Worker 预编译脚本
* 用于在 Turbopack 开发环境下编译 Worker 文件
*/
async function buildWorkers(watch: boolean = false) {
console.log('🔨 开始编译 Worker 文件...\n');
// 确保输出目录存在
if (!fs.existsSync(WORKER_OUTPUT_DIR)) {
fs.mkdirSync(WORKER_OUTPUT_DIR, { recursive: true });
}
// 扫描 worker 目录
if (!fs.existsSync(WORKER_SOURCE_DIR)) {
console.error(`❌ Worker 源目录不存在: ${WORKER_SOURCE_DIR}`);
process.exit(1);
}
const workers = fs.readdirSync(WORKER_SOURCE_DIR).filter((item) => {
const fullPath = path.join(WORKER_SOURCE_DIR, item);
const isDir = fs.statSync(fullPath).isDirectory();
const hasIndexTs = fs.existsSync(path.join(fullPath, 'index.ts'));
return isDir && hasIndexTs;
});
if (workers.length === 0) {
return;
}
// esbuild 通用配置
const commonConfig: BuildOptions = {
bundle: true,
platform: 'node',
format: 'cjs',
target: 'node18',
sourcemap: false,
// Tree Shaking 和代码压缩优化
minify: true,
treeShaking: true,
keepNames: false,
alias: {
'@fastgpt-sdk/otel': path.join(OTEL_SDK_DIR, 'index.ts'),
'@fastgpt-sdk/otel/logger': path.join(OTEL_SDK_DIR, 'logger-entry.ts'),
'@fastgpt-sdk/otel/metrics': path.join(OTEL_SDK_DIR, 'metrics-entry.ts'),
'@fastgpt-sdk/otel/tracing': path.join(OTEL_SDK_DIR, 'tracing-entry.ts')
},
// 移除调试代码
drop: process.env.NODE_ENV === 'production' ? ['console', 'debugger'] : []
};
if (watch) {
// Watch 模式:使用 esbuild context API
const contexts = await Promise.all(
workers.map(async (worker) => {
const entryPoint = path.join(WORKER_SOURCE_DIR, worker, 'index.ts');
const outfile = path.join(WORKER_OUTPUT_DIR, `${worker}.js`);
const config: BuildOptions = {
...commonConfig,
entryPoints: [entryPoint],
outfile,
logLevel: 'info'
};
try {
const ctx = await context(config);
await ctx.watch();
console.log(`👁️ ${worker} 正在监听中...`);
return ctx;
} catch (error: any) {
console.error(`${worker} Watch 启动失败:`, error.message);
return null;
}
})
);
// 过滤掉失败的 context
const validContexts = contexts.filter((ctx) => ctx !== null);
console.log('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
console.log(`${validContexts.length}/${workers.length} 个 Worker 正在监听中`);
console.log('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
console.log('\n💡 提示: 按 Ctrl+C 停止监听\n');
// 保持进程运行
process.on('SIGINT', async () => {
console.log('\n\n🛑 正在停止 Worker 监听...');
await Promise.all(validContexts.map((ctx) => ctx?.dispose()));
console.log('✅ 已停止');
process.exit(0);
});
} else {
// 单次编译模式
const buildPromises = workers.map(async (worker) => {
const entryPoint = path.join(WORKER_SOURCE_DIR, worker, 'index.ts');
const outfile = path.join(WORKER_OUTPUT_DIR, `${worker}.js`);
try {
const config: BuildOptions = {
...commonConfig,
entryPoints: [entryPoint],
outfile
};
await build(config);
console.log(`${worker} 编译成功 → ${path.relative(process.cwd(), outfile)}`);
return { success: true, worker };
} catch (error: any) {
console.error(`${worker} 编译失败:`, error.message);
return { success: false, worker, error };
}
});
// 等待所有编译完成
const results = await Promise.all(buildPromises);
// 统计结果
const successCount = results.filter((r) => r.success).length;
const failCount = results.filter((r) => !r.success).length;
console.log('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
console.log(`✅ 编译成功: ${successCount}/${workers.length}`);
if (failCount > 0) {
console.log(`❌ 编译失败: ${failCount}/${workers.length}`);
const failedWorkers = results.filter((r) => !r.success).map((r) => r.worker);
console.log(`失败的 Worker: ${failedWorkers.join(', ')}`);
// 非监听模式下,如果有失败的编译,退出并返回错误码
process.exit(1);
}
console.log('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
}
}
// 解析命令行参数
const args = process.argv.slice(2);
const watch = args.includes('--watch') || args.includes('-w');
// 显示启动信息
console.log('');
console.log('╔═══════════════════════════════════════╗');
console.log('║ FastGPT Worker 预编译工具 v1.0 ║');
console.log('╚═══════════════════════════════════════╝');
console.log('');
// 执行编译
buildWorkers(watch).catch((err) => {
console.error('\n❌ Worker 编译过程发生错误:', err);
process.exit(1);
});