Build: stop tracking bundled artifacts (#2455) (thanks @0oAstro)

Co-authored-by: 0oAstro <0oAstro@users.noreply.github.com>
This commit is contained in:
Gustavo Madeira Santana
2026-01-26 22:59:02 -05:00
parent 615ccf6411
commit c2a4863b15
13 changed files with 94 additions and 22 deletions

View File

@@ -0,0 +1,40 @@
import fs from "node:fs/promises";
import os from "node:os";
import path from "node:path";
import { describe, expect, it } from "vitest";
import { copyA2uiAssets } from "../../scripts/canvas-a2ui-copy.js";
describe("canvas a2ui copy", () => {
it("throws a helpful error when assets are missing", async () => {
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "clawdbot-a2ui-"));
try {
await expect(copyA2uiAssets({ srcDir: dir, outDir: path.join(dir, "out") })).rejects.toThrow(
'Run "pnpm canvas:a2ui:bundle"',
);
} finally {
await fs.rm(dir, { recursive: true, force: true });
}
});
it("copies bundled assets to dist", async () => {
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "clawdbot-a2ui-"));
const srcDir = path.join(dir, "src");
const outDir = path.join(dir, "dist");
try {
await fs.mkdir(srcDir, { recursive: true });
await fs.writeFile(path.join(srcDir, "index.html"), "<html></html>", "utf8");
await fs.writeFile(path.join(srcDir, "a2ui.bundle.js"), "console.log(1);", "utf8");
await copyA2uiAssets({ srcDir, outDir });
await expect(fs.stat(path.join(outDir, "index.html"))).resolves.toBeTruthy();
await expect(fs.stat(path.join(outDir, "a2ui.bundle.js"))).resolves.toBeTruthy();
} finally {
await fs.rm(dir, { recursive: true, force: true });
}
});
});