@vertz/cli 0.2.15 → 0.2.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +11 -2
- package/dist/index.js +283 -63
- package/dist/vertz.js +278 -58
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -265,6 +265,10 @@ interface PipelineConfig {
|
|
|
265
265
|
run: () => Promise<void>;
|
|
266
266
|
close: () => Promise<void>;
|
|
267
267
|
}>;
|
|
268
|
+
/** @internal — override UI compiler validation for testing */
|
|
269
|
+
_uiCompilerValidator?: () => Promise<{
|
|
270
|
+
fileCount: number;
|
|
271
|
+
}>;
|
|
268
272
|
/** Host for dev server */
|
|
269
273
|
host: string;
|
|
270
274
|
}
|
|
@@ -329,8 +333,13 @@ declare class PipelineOrchestrator {
|
|
|
329
333
|
*/
|
|
330
334
|
private runCodegen;
|
|
331
335
|
/**
|
|
332
|
-
* Run the UI build stage
|
|
333
|
-
*
|
|
336
|
+
* Run the UI build stage.
|
|
337
|
+
*
|
|
338
|
+
* In dev mode this validates that the UI compiler contract
|
|
339
|
+
* (`createVertzBunPlugin` from `@vertz/ui-server/bun-plugin`) is available
|
|
340
|
+
* and can initialize (manifest generation, framework manifest loading).
|
|
341
|
+
* The actual per-file compilation happens on-demand in the dev server's
|
|
342
|
+
* bun plugin `onLoad` hook.
|
|
334
343
|
*/
|
|
335
344
|
private runBuildUI;
|
|
336
345
|
/**
|