Files
vue-tui/packages/vite/test/build.sequential.test.ts
T
Yunfei He 14d5e5f9ad feat(vite)!: don't bundle @vitejs/plugin-vue; compose it explicitly (0.2.0) (#234)
* feat(vite)!: don't bundle @vitejs/plugin-vue; compose it explicitly

BREAKING: vueTui() no longer includes @vitejs/plugin-vue. Add your own SFC/JSX
compiler alongside it — `[vueTui(), vue()]` for SFCs (JSX was already explicit:
`[vueTui(), vueJsx()]`). This makes SFC and JSX consistent, matches Vite
convention (your framework plugin is visible in the config), removes the "is
plugin-vue already bundled?" ambiguity, and keeps @vue-tui/vite focused on the
terminal dev server (HMR) + build wiring.

The dev plugin already force-client-compiles whichever plugin-vue/plugin-vue-jsx
is present (matched by name in configResolved), so user-provided plugins work
identically to the previously-bundled one.

- index.ts: drop the bundled vue() and the `vue` passthrough option.
- package.json: @vitejs/plugin-vue moves from dependencies to devDependencies +
  an OPTIONAL peerDependency (^6) — optional because JSX (plugin-vue-jsx) and
  h() users don't need it; the version is still validated when present.
  Bump 0.1.2 -> 0.2.0.
- Update all in-repo SFC configs (examples + fixtures) and the dev/build tests
  to `[vueTui(), vue()]`; update basic-template's README.

vp run ready green (vite suite 129 tests, runtime examples 6).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* test(vite): use the public [vueTui(), vue()] form in dev tests

The decouple migration left the tests on the spread `[...vueTui(), vue()]` while
configs/examples/docs use `[vueTui(), vue()]` (Vite flattens the nested plugin
array — verified it works in createServer too). Align the tests to the
documented consumer form for consistency. Vite suite green (12 files, 28 tests).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* refactor(vite): compiler plugin first in order — [vue(), vueTui()]

Convention: list the SFC/JSX compiler first and vueTui() last
([vue(), vueTui()] / [vueJsx(), vueTui()]). Order is functionally irrelevant
(devPlugin force-compiles whichever plugin-vue/vue-jsx is present by name in
configResolved), so this is purely stylistic consistency across configs,
examples, fixtures, tests, and docs.

Also refresh @vue-tui/vite's own README, which still showed the pre-decouple
[vueTui()] form and documented the now-removed `vue` passthrough option.

Vite suite green (28 tests, incl. the JSX path).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-28 22:41:28 +08:00

93 lines
4.3 KiB
TypeScript

// SEQUENTIAL: writes/removes the fixture's dist/ directory on the real fs, so concurrent
// builds racing on dist/ are pinned to a *.sequential.test.ts file.
//
// Uses a DEDICATED `build` fixture (a copy of `basic`): dev.sequential MUTATES
// fixtures/basic/src/app.vue (its hot-swap test swaps LABEL-A out), and file-parallelism
// (fileParallelism: true) would otherwise let that edit land in this build's output mid-run
// and break the toContain("LABEL-A") assertion. A private fixture removes the shared file.
//
// NOTE: We pass configFile: false and provide vueTui() plugins inline rather than loading the
// fixture's vite.config.ts. rolldown v0.2.1 (used by vite-plus-core) has a bug where bundling a
// config file that combines transform.define with a plugin transform returning { code, map: null }
// throws "TypeError: Cannot convert undefined or null to object" in the bundleConfigFile WASM
// binding. Bypassing config-file loading sidesteps the bug while still exercising the real build:
// buildConfigPlugin (apply: "build") sets rolldownOptions.input + the externalize predicate.
import { test, expect, afterEach } from "vite-plus/test";
import { fileURLToPath } from "node:url";
import { existsSync, rmSync } from "node:fs";
import { isBuiltin } from "node:module";
import { build, type Rollup } from "vite";
import vue from "@vitejs/plugin-vue";
import { vueTui } from "../src/index.ts";
const root = fileURLToPath(new URL("./fixtures/build", import.meta.url));
const dist = `${root}/dist`;
afterEach(() => {
rmSync(dist, { recursive: true, force: true });
});
test("vite build emits a single self-contained Node entry with deps externalized", async () => {
rmSync(dist, { recursive: true, force: true });
const output = await build({
root,
configFile: false,
plugins: [vue(), vueTui()],
logLevel: "silent",
});
// A single, named input resolves to one RollupOutput (not a watcher).
const result = (Array.isArray(output) ? output[0] : output) as Rollup.RollupOutput;
const entryChunk = result.output.find(
(c): c is Rollup.OutputChunk => c.type === "chunk" && c.isEntry,
);
expect(entryChunk?.fileName).toBe("main.js");
expect(existsSync(`${dist}/main.js`)).toBe(true);
const code = entryChunk!.code;
// Bare deps stay external bare imports for Node to resolve at runtime (not inlined).
expect(code).toMatch(/from\s*["']@vue-tui\/runtime["']/);
expect([...entryChunk!.imports]).toContain("@vue-tui/runtime");
// The relative app.vue id was bundled in, so its rendered content is present in the entry.
expect(code).toContain("LABEL-A");
});
test("a consumer's own rolldownOptions.external overrides the plugin default (self-contained build)", async () => {
rmSync(dist, { recursive: true, force: true });
// The consumer keeps vueTui() (for dev/HMR) but asks for a SELF-CONTAINED build in their own
// config: externalize only Node builtins, bundle everything else into one file. The plugin must
// YIELD its default externalize-deps predicate to this — distribution shape is the app author's
// call, and Vite merges plugin config() over user config, so without the yield theirs is clobbered.
// Vite 8 field is rolldownOptions (rollupOptions is the deprecated alias).
const output = await build({
root,
configFile: false,
plugins: [vue(), vueTui()],
logLevel: "silent",
build: {
rolldownOptions: {
external: (id: string) => isBuiltin(id),
platform: "node",
output: { inlineDynamicImports: true },
},
},
});
const result = (Array.isArray(output) ? output[0] : output) as Rollup.RollupOutput;
const entryChunk = result.output.find(
(c): c is Rollup.OutputChunk => c.type === "chunk" && c.isEntry,
)!;
// The consumer's external won: deps are bundled IN, not left external.
expect([...entryChunk.imports]).not.toContain("@vue-tui/runtime");
expect([...entryChunk.imports]).not.toContain("vue");
// Every surviving external import is a Node builtin (the consumer's isBuiltin predicate took effect).
for (const imp of entryChunk.imports) expect(isBuiltin(imp)).toBe(true);
// platform:"node" gave the bundle a real require, so no throwing CJS-require stub survived.
expect(entryChunk.code).not.toMatch(
/doesn't expose the `require` function|Calling `require` for/,
);
expect(entryChunk.code).toContain("LABEL-A");
});