@koda-sl/baker-cli 0.97.0 → 0.98.1
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/README.md +12 -0
- package/canvas/tiktok-captions-composition/index.html +7 -2
- package/canvas/video-overlay-composition/index.html +18 -25
- package/dist/{chunk-RCPMJKI7.js → chunk-3JVYU72O.js} +130 -24
- package/dist/chunk-3JVYU72O.js.map +1 -0
- package/dist/cli.js +524 -203
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.d.ts +7 -0
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-RCPMJKI7.js.map +0 -1
package/dist/engine/index.d.ts
CHANGED
|
@@ -374,6 +374,13 @@ declare class Engine$1 {
|
|
|
374
374
|
}>;
|
|
375
375
|
run(input: unknown, opts?: RunOptions): Promise<RunResult>;
|
|
376
376
|
private runLayers;
|
|
377
|
+
/**
|
|
378
|
+
* Dead-node elimination: when the canvas declares an `output`, execute only the
|
|
379
|
+
* nodes that output transitively depends on. Orphaned nodes (left by an edit or
|
|
380
|
+
* a rewire) otherwise still run, bill, and abort the run on their own failure.
|
|
381
|
+
* No declared output ⇒ intent is ambiguous, so run everything (back-compat).
|
|
382
|
+
*/
|
|
383
|
+
private pruneToOutput;
|
|
377
384
|
private writeFinal;
|
|
378
385
|
private executeOne;
|
|
379
386
|
private materializeNodeOutputs;
|
package/dist/engine/index.js
CHANGED