@koda-sl/baker-cli 0.97.0 → 0.98.1-dev.662146ce
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-26K7V346.js} +133 -27
- package/dist/chunk-26K7V346.js.map +1 -0
- package/dist/cli.js +719 -233
- 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 +5 -3
- 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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@koda-sl/baker-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.98.1-dev.662146ce",
|
|
4
4
|
"description": "AI-agent-first CLI for interacting with Baker, including the Baker creative canvas.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,8 +21,10 @@
|
|
|
21
21
|
"build": "tsup",
|
|
22
22
|
"dev": "tsx watch src/cli.ts",
|
|
23
23
|
"typecheck": "tsc --noEmit",
|
|
24
|
-
"lint": "biome check src __tests__",
|
|
25
|
-
"test": "vitest run"
|
|
24
|
+
"lint": "biome check src __tests__ tsup.config.ts vitest.config.mts",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"format:check": "biome format src __tests__ tsup.config.ts vitest.config.mts",
|
|
27
|
+
"format": "biome format --write src __tests__ tsup.config.ts vitest.config.mts"
|
|
26
28
|
},
|
|
27
29
|
"dependencies": {
|
|
28
30
|
"@t3-oss/env-core": "^0.13.10",
|