@koda-sl/baker-cli 0.199.0 → 0.200.0-dev.3c3bc560f
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 +13 -0
- package/dist/{chunk-5MPIOGRO.js → chunk-CC5LZZE4.js} +4 -4
- package/dist/chunk-CC5LZZE4.js.map +1 -0
- package/dist/cli.js +382 -284
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-5MPIOGRO.js.map +0 -1
package/README.md
CHANGED
|
@@ -4560,6 +4560,19 @@ $ baker canvas validate my-canvas.json
|
|
|
4560
4560
|
|
|
4561
4561
|
On error you get an array of `ValidationIssue`s, each with `path`, `code`, `message`, and optional `did_you_mean`.
|
|
4562
4562
|
|
|
4563
|
+
**Absolute asset paths are healed, not reported.** A `source: "path"` ingest (or a `hyperframe_render`
|
|
4564
|
+
composition) written as an absolute path inside the workspace is rewritten to its canvas-relative form
|
|
4565
|
+
and the canvas file is saved, before anything else reads it. `normalized_paths` lists what changed.
|
|
4566
|
+
`run` does the same and logs it. This is not cosmetic: an absolute path resolves in the Runtime that
|
|
4567
|
+
wrote it, so validate, run, and the preview all pass, and only the publish build — a different checkout
|
|
4568
|
+
root, a different session — ever sees the break.
|
|
4569
|
+
|
|
4570
|
+
Two roots count as "this workspace": the current one, and `/home/user/repo` (`REPO_PATH`), the fixed path
|
|
4571
|
+
every Session's workspace is checked out at. A path under either names the same file in any checkout, so
|
|
4572
|
+
remapping it is a proof rather than a guess — which is what lets an already-committed canvas heal in the
|
|
4573
|
+
publish build instead of blocking it. Anything under a root that maps to neither is left alone, and the
|
|
4574
|
+
scaffold's `validate-creatives` gate still rejects it.
|
|
4575
|
+
|
|
4563
4576
|
Advisory (warning-severity) video invariants include `VIDEO_PROMPT_DECISION_MISSING` (a thin clip prompt that
|
|
4564
4577
|
names no camera/motion move **and** no exclusions — the six-decision doctrine) and `VIDEO_HOOK_LAYER_MISSING`
|
|
4565
4578
|
(the hook, scene 0, is thin across two or more of the four hook layers — text/sound/visual/vibe). Warnings never
|
|
@@ -15,9 +15,9 @@ import {
|
|
|
15
15
|
shouldEscalate
|
|
16
16
|
} from "./chunk-6NZG2TCM.js";
|
|
17
17
|
|
|
18
|
-
//
|
|
18
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js
|
|
19
19
|
var require_safe_stable_stringify = __commonJS({
|
|
20
|
-
"
|
|
20
|
+
"../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js"(exports, module) {
|
|
21
21
|
"use strict";
|
|
22
22
|
var { hasOwnProperty } = Object.prototype;
|
|
23
23
|
var stringify = configure2();
|
|
@@ -1091,7 +1091,7 @@ function resolveAdaptFormats(params) {
|
|
|
1091
1091
|
return params.formats ?? [];
|
|
1092
1092
|
}
|
|
1093
1093
|
|
|
1094
|
-
//
|
|
1094
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/esm/wrapper.js
|
|
1095
1095
|
var import__ = __toESM(require_safe_stable_stringify(), 1);
|
|
1096
1096
|
var configure = import__.default.configure;
|
|
1097
1097
|
var wrapper_default = import__.default;
|
|
@@ -8775,4 +8775,4 @@ export {
|
|
|
8775
8775
|
defaultRegistry,
|
|
8776
8776
|
createEngineFromEnv
|
|
8777
8777
|
};
|
|
8778
|
-
//# sourceMappingURL=chunk-
|
|
8778
|
+
//# sourceMappingURL=chunk-CC5LZZE4.js.map
|