426e9eeabd
Benchmark Bridge Tests / benchmark (bunx @biomejs/biome check packages/lifeops-bench/src, benchmark-lint) (push) Waiting to run
Benchmark Bridge Tests / benchmark (bunx vitest run --config packages/lifeops-bench/vitest.config.ts --root packages/lifeops-bench --passWithNoTests, benchmark-tests) (push) Waiting to run
Build Agent Image / build-and-push (push) Waiting to run
Chat shell gestures / Chat shell gesture + parity e2e (push) Waiting to run
ci / test (push) Waiting to run
ci / lint-and-format (push) Waiting to run
ci / build (push) Waiting to run
ci / dev-startup (push) Waiting to run
Cloud Gateway Discord / Test (push) Waiting to run
Cloud Gateway Webhook / Test (push) Waiting to run
Cloud Tests / lint-and-types (push) Waiting to run
Cloud Tests / unit-tests (push) Waiting to run
Cloud Tests / integration-tests (push) Waiting to run
Cloud Tests / e2e-tests (push) Blocked by required conditions
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
Deploy Apps Worker (Product 2) / Determine environment (push) Waiting to run
Deploy Apps Worker (Product 2) / Deploy apps worker to apps-control host (${{ needs.determine-env.outputs.environment }}) (push) Blocked by required conditions
Deploy Eliza Provisioning Worker / Determine environment (push) Waiting to run
Deploy Eliza Provisioning Worker / Deploy worker to Hetzner host (${{ needs.determine-env.outputs.environment }} @ ${{ needs.determine-env.outputs.deployment_sha }}) (push) Blocked by required conditions
Dev Smoke / Classify changed paths (push) Waiting to run
Dev Smoke / bun run dev onboarding chat (push) Blocked by required conditions
Dev Smoke / Vite HMR dependency-level smoke (push) Blocked by required conditions
Electrobun Submodule Guard / electrobun gitlink is fetchable (push) Waiting to run
gitleaks / gitleaks (push) Waiting to run
Markdown Links / Relative Markdown Links (push) Waiting to run
Publish @elizaos/example-code / check_npm (push) Waiting to run
Publish @elizaos/example-code / publish_npm (push) Blocked by required conditions
Publish @elizaos/plugin-elizacloud / verify_version (push) Waiting to run
Publish @elizaos/plugin-elizacloud / publish_npm (push) Blocked by required conditions
Quality (Extended) / Homepage Build (PR smoke) (push) Waiting to run
Quality (Extended) / Comment-only diff guard (push) Waiting to run
Quality (Extended) / Format + Type Safety Ratchet (push) Waiting to run
Quality (Extended) / Develop Gate (secret scan + UI determinism) (push) Waiting to run
Quality (Extended) / Develop Gate (lint) (push) Waiting to run
Sandbox Live Smoke / Sandbox live smoke (push) Waiting to run
Snap Build & Test / Build Snap (amd64) (push) Waiting to run
Snap Build & Test / Build Snap (arm64) (push) Waiting to run
supply-chain / sbom (push) Waiting to run
supply-chain / vulnerability-scan (push) Waiting to run
Build, Push & Deploy to Phala Cloud / build-and-push (push) Waiting to run
Test Packaging / Validate Packaging Configs (push) Waiting to run
Test Packaging / PyPI on Python ${{ matrix.python }} (push) Waiting to run
Test Packaging / Pack & Test JS Tarballs (push) Waiting to run
Test Packaging / elizaos CLI global-install smoke (node + bun) (push) Waiting to run
UI Fixture E2E / ui-fixture-e2e (push) Waiting to run
UI Fixture E2E / fixture-e2e (push) Waiting to run
UI Story Gate / story-gate (push) Waiting to run
vault-ci / test (macos-latest) (push) Waiting to run
vault-ci / test (ubuntu-latest) (push) Waiting to run
vault-ci / test (windows-latest) (push) Waiting to run
vault-ci / app-core wiring tests (push) Waiting to run
verify-patches / verify patches/CHECKSUMS.sha256 (push) Waiting to run
Voice Benchmark Smoke / voice-emotion fixture smoke (push) Waiting to run
Voice Benchmark Smoke / voiceagentbench fixture smoke (push) Waiting to run
Voice Benchmark Smoke / voicebench-quality unit smoke (push) Waiting to run
Voice Benchmark Smoke / voicebench TypeScript unit (no audio) (push) Waiting to run
Voice Benchmark Smoke / voice bench smoke summary (push) Blocked by required conditions
Windows CI / windows ([bun run --cwd packages/app-core test bun run --cwd packages/elizaos test bun run --cwd packages/cloud/shared test], app-and-cli) (push) Waiting to run
Windows CI / windows ([bun run --cwd packages/scenario-runner test bun run --cwd packages/vault test bun run --cwd packages/security test bun run --cwd plugins/plugin-coding-tools test], framework-packages) (push) Waiting to run
Windows CI / windows ([bun run --cwd plugins/plugin-elizacloud test bun run --cwd plugins/plugin-discord test bun run --cwd plugins/plugin-anthropic test bun run --cwd plugins/plugin-openai test bun run --cwd plugins/plugin-app-control test bun run --cwd plugins/pl… (push) Waiting to run
Windows CI / windows ([node packages/scripts/run-turbo.mjs run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/agent --concurrency=4 node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh node packages/scripts/run… (push) Waiting to run
Windows CI / windows ([node packages/scripts/run-turbo.mjs run typecheck --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-shared --concurrency=4 bun run --cwd packages/core test bun run --cwd packages/shared test], core-runtime, 75) (push) Waiting to run
Test Packaging / Build & Test PyPI Package (push) Waiting to run
Voice Workbench / headless workbench (mocked backends) (push) Has been cancelled
Voice Workbench / real acoustic lane (nightly, provisioned only) (push) Has been cancelled
267 lines
9.6 KiB
TypeScript
267 lines
9.6 KiB
TypeScript
#!/usr/bin/env bun
|
|
/**
|
|
* Shared plugin build driver (issue #9626, TL;DR #2). The model-provider and
|
|
* connector plugins each hand-rolled the same Bun.build + tsc-d.ts + d.ts-alias
|
|
* algorithm with minor per-package variation (which targets, minify, whether a
|
|
* dist clean runs, and the exact declaration-alias shims). This collapses that
|
|
* orchestration to one place; each plugin's `build.ts` becomes a small,
|
|
* declarative `buildPlugin({...})` call that lists only what it actually differs
|
|
* on. The emitted `dist/` is byte-identical to the previous hand-rolled build.
|
|
*/
|
|
import { existsSync } from "node:fs";
|
|
import { copyFile, mkdir, readdir, rename, writeFile } from "node:fs/promises";
|
|
import { createRequire } from "node:module";
|
|
import { dirname, join, relative, resolve } from "node:path";
|
|
import {
|
|
type ExternalsFromPackageJsonOptions,
|
|
externalsFromPackageJson,
|
|
} from "./plugin-build-externals";
|
|
|
|
export interface BuildTarget {
|
|
/** Human label for the progress log (e.g. "Node", "Browser", "Node (CJS)"). */
|
|
label: string;
|
|
/** Entrypoint(s) relative to the package root. */
|
|
entry: string | string[];
|
|
/** Output subdirectory under `dist/` (e.g. "node", "browser", "cjs"). */
|
|
outSubdir: string;
|
|
target: "node" | "browser" | "bun";
|
|
format: "esm" | "cjs";
|
|
/** Default: false. */
|
|
minify?: boolean;
|
|
/** Default: "external". */
|
|
sourcemap?: "external" | "inline" | "none" | "linked";
|
|
/** Default: false (Bun's default). */
|
|
splitting?: boolean;
|
|
/** Passed through to Bun.build (e.g. `{ entry: "index.node.js" }`). */
|
|
naming?: { entry?: string; chunk?: string; asset?: string };
|
|
/**
|
|
* Rename emitted files after the build, e.g.
|
|
* `[["index.node.js", "index.node.cjs"]]` or both the bundle and its map.
|
|
*/
|
|
renames?: ReadonlyArray<readonly [from: string, to: string]>;
|
|
}
|
|
|
|
export interface DtsShim {
|
|
/** Path relative to `dist/` to write (e.g. "index.d.ts", "node/index.d.ts"). */
|
|
path: string;
|
|
/** Exact file contents. */
|
|
content: string;
|
|
}
|
|
|
|
export interface BuildPluginConfig {
|
|
/** Package name, for log lines only. */
|
|
name: string;
|
|
/** Remove `dist/` before building (via the hardened rm helper). Default: true. */
|
|
clean?: boolean;
|
|
/** "auto" derives externals from package.json; or pass an explicit list. */
|
|
externals?: "auto" | readonly string[];
|
|
/** Options forwarded to externalsFromPackageJson when externals === "auto". */
|
|
externalsOptions?: ExternalsFromPackageJsonOptions;
|
|
targets: readonly BuildTarget[];
|
|
/** tsconfig project passed to `tsc` for declaration emit. */
|
|
dtsProject?: string;
|
|
/**
|
|
* Pass `--emitDeclarationOnly` to the declaration `tsc` invocation (for
|
|
* plugins whose `dtsProject` tsconfig would otherwise also emit JS). Default:
|
|
* false. */
|
|
dtsEmitDeclarationOnly?: boolean;
|
|
/**
|
|
* After declaration emit, rewrite bare relative specifiers in the emitted
|
|
* files to explicit NodeNext-resolvable paths (`./x` -> `./x.js`,
|
|
* `./dir` -> `./dir/index.js`). Needed by single-entrypoint connector plugins
|
|
* that ship a bundled `dist/index.js` but a per-file `.d.ts` tree whose
|
|
* re-exports would otherwise stay bare and fail to resolve for NodeNext
|
|
* consumers. Default: false. */
|
|
rewriteDistImports?: boolean;
|
|
/**
|
|
* Tolerate a failed `tsc` declaration emit (warn + continue with JS-only
|
|
* outputs) instead of aborting. Mirrors the per-package fallback some plugins
|
|
* carried; default false (fail loud).
|
|
*/
|
|
dtsTolerant?: boolean;
|
|
/** Declaration-alias shim files to write after tsc. */
|
|
dtsShims?: readonly DtsShim[];
|
|
/**
|
|
* After the JS targets build (and before declaration emit), recursively move
|
|
* everything under `dist/<from>` up into `dist/<to ?? ".">`, then remove the
|
|
* now-empty `dist/<from>`. Reproduces the hand-rolled "flatten `dist/src` into
|
|
* `dist`" step used by plugins whose glob target (`naming: "[dir]/[name]"`
|
|
* over `src/**`) emits under a `src/` prefix. Off by default; existing
|
|
* single-/multi-target adopters that don't set it are unaffected.
|
|
*/
|
|
flatten?: ReadonlyArray<{ from: string; to?: string }>;
|
|
/**
|
|
* After declaration emit (+ any `dtsShims`), copy an emitted file under
|
|
* `dist/<from>` to `dist/<to>`. Reproduces the hand-rolled
|
|
* `copyFileSync("dist/index.d.ts", "dist/index.d.mts")` step some plugins use
|
|
* to publish a `.d.mts` sibling of a `tsc`-generated `.d.ts`. Unlike a
|
|
* `dtsShim` (a frozen literal that would silently diverge from generated
|
|
* output on any source change), this copies the real emitted file. Off by
|
|
* default; adopters that don't set it are unaffected.
|
|
*/
|
|
dtsCopies?: ReadonlyArray<{ from: string; to: string }>;
|
|
}
|
|
|
|
const RM_RECURSIVE = resolve(
|
|
import.meta.dir,
|
|
"..",
|
|
"packages",
|
|
"scripts",
|
|
"rm-path-recursive.mjs",
|
|
);
|
|
|
|
const REWRITE_DIST_IMPORTS = resolve(
|
|
import.meta.dir,
|
|
"..",
|
|
"packages",
|
|
"scripts",
|
|
"rewrite-dist-relative-imports-node-esm.mjs",
|
|
);
|
|
|
|
/**
|
|
* Absolute path to the workspace `tsc` JS entry. Resolved via node module
|
|
* resolution so it works regardless of the node_modules layout — a fresh CI
|
|
* checkout, a hoisted/symlinked install, or a git worktree that borrows a
|
|
* parent's node_modules — instead of assuming a fixed `../node_modules/...`
|
|
* offset (which is absent in a worktree). `buildPlugin` runs it as
|
|
* `node ${TSC_BIN}`, so it needs no `node_modules/.bin` on PATH: `Bun.$`
|
|
* resolves commands from the bun process's startup PATH, which a bare
|
|
* `bun test` step does not extend (only `bun run` does).
|
|
*/
|
|
const TSC_BIN = (() => {
|
|
try {
|
|
return createRequire(import.meta.url).resolve("typescript/bin/tsc");
|
|
} catch {
|
|
return resolve(
|
|
import.meta.dir,
|
|
"..",
|
|
"node_modules",
|
|
"typescript",
|
|
"bin",
|
|
"tsc",
|
|
);
|
|
}
|
|
})();
|
|
|
|
/**
|
|
* Recursively move every file under `fromDir` into `toDir`, preserving the
|
|
* sub-tree below `fromDir` and creating parent dirs as needed. A plain rename
|
|
* preserves file bytes (and any inner `//# sourceMappingURL` / map `file`
|
|
* references) exactly. The caller removes the now-empty `fromDir`.
|
|
*/
|
|
async function moveTreeContents(fromDir: string, toDir: string): Promise<void> {
|
|
const entries = await readdir(fromDir, {
|
|
recursive: true,
|
|
withFileTypes: true,
|
|
});
|
|
for (const e of entries) {
|
|
if (!e.isFile()) continue;
|
|
const abs = join(e.parentPath, e.name);
|
|
const dest = join(toDir, relative(fromDir, abs));
|
|
await mkdir(dirname(dest), { recursive: true });
|
|
await rename(abs, dest);
|
|
}
|
|
}
|
|
|
|
export async function buildPlugin(config: BuildPluginConfig): Promise<void> {
|
|
const totalStart = Date.now();
|
|
const distDir = join(process.cwd(), "dist");
|
|
|
|
if ((config.clean ?? true) && existsSync(distDir)) {
|
|
await Bun.$`node ${RM_RECURSIVE} ${distDir}`;
|
|
}
|
|
await mkdir(distDir, { recursive: true });
|
|
|
|
const external =
|
|
config.externals === undefined || config.externals === "auto"
|
|
? await externalsFromPackageJson(
|
|
"./package.json",
|
|
config.externalsOptions,
|
|
)
|
|
: [...config.externals];
|
|
|
|
for (const t of config.targets) {
|
|
const start = Date.now();
|
|
console.log(`🔨 Building ${config.name} (${t.label})…`);
|
|
const result = await Bun.build({
|
|
entrypoints: Array.isArray(t.entry) ? t.entry : [t.entry],
|
|
outdir: join(distDir, t.outSubdir),
|
|
target: t.target,
|
|
format: t.format,
|
|
sourcemap: t.sourcemap ?? "external",
|
|
minify: t.minify ?? false,
|
|
splitting: t.splitting ?? false,
|
|
external,
|
|
...(t.naming ? { naming: t.naming } : {}),
|
|
});
|
|
if (!result.success) {
|
|
console.error(`${t.label} build failed:`, result.logs);
|
|
throw new Error(`${t.label} build failed`);
|
|
}
|
|
for (const [from, to] of t.renames ?? []) {
|
|
try {
|
|
await rename(
|
|
join(distDir, t.outSubdir, from),
|
|
join(distDir, t.outSubdir, to),
|
|
);
|
|
} catch (e) {
|
|
console.warn(`${t.label} rename step warning:`, e);
|
|
}
|
|
}
|
|
console.log(
|
|
`✅ ${t.label} complete in ${((Date.now() - start) / 1000).toFixed(2)}s`,
|
|
);
|
|
}
|
|
|
|
for (const f of config.flatten ?? []) {
|
|
const fromDir = join(distDir, f.from);
|
|
if (!existsSync(fromDir)) continue;
|
|
const toDir = join(distDir, f.to ?? ".");
|
|
console.log(`📂 Flattening dist/${f.from} → dist/${f.to ?? "."}…`);
|
|
await moveTreeContents(fromDir, toDir);
|
|
await Bun.$`node ${RM_RECURSIVE} ${fromDir}`;
|
|
}
|
|
|
|
if (config.dtsProject) {
|
|
console.log("📝 Generating TypeScript declarations…");
|
|
const project = config.dtsProject;
|
|
const emitDeclOnly = config.dtsEmitDeclarationOnly ?? false;
|
|
const run = emitDeclOnly
|
|
? () =>
|
|
Bun.$`node ${TSC_BIN} --project ${project} --emitDeclarationOnly --noCheck`
|
|
: () => Bun.$`node ${TSC_BIN} --project ${project} --noCheck`;
|
|
if (config.dtsTolerant) {
|
|
try {
|
|
await run();
|
|
} catch {
|
|
console.warn(
|
|
"Warning: TypeScript declaration generation failed; continuing with bundled JS outputs only.",
|
|
);
|
|
}
|
|
} else {
|
|
await run();
|
|
}
|
|
}
|
|
|
|
for (const shim of config.dtsShims ?? []) {
|
|
const target = join(distDir, shim.path);
|
|
await mkdir(dirname(target), { recursive: true });
|
|
await writeFile(target, shim.content, "utf8");
|
|
}
|
|
|
|
for (const { from, to } of config.dtsCopies ?? []) {
|
|
const dest = join(distDir, to);
|
|
await mkdir(dirname(dest), { recursive: true });
|
|
await copyFile(join(distDir, from), dest);
|
|
}
|
|
|
|
if (config.rewriteDistImports) {
|
|
console.log("🔧 Rewriting dist relative imports for NodeNext…");
|
|
await Bun.$`node ${REWRITE_DIST_IMPORTS}`;
|
|
}
|
|
|
|
console.log(
|
|
`🎉 ${config.name} build finished in ${((Date.now() - totalStart) / 1000).toFixed(2)}s`,
|
|
);
|
|
}
|