stereoframe 0.2.5 → 0.2.6
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/cli.js +2 -2
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -733,8 +733,8 @@ async function validateProject(projectDir) {
|
|
|
733
733
|
findings.push({
|
|
734
734
|
rule: "non_idempotent_seek",
|
|
735
735
|
severity: "error",
|
|
736
|
-
message: `seeking t=${mid.toFixed(2)} twice produced different
|
|
737
|
-
fixHint: "Look for accumulated state, wall-clock reads, or unseeded randomness in escape-hatch code."
|
|
736
|
+
message: `seeking t=${mid.toFixed(2)} twice produced a different frame — some state is not a pure function of seek time, so capture would glitch.`,
|
|
737
|
+
fixHint: "Look for accumulated state, trails, wall-clock reads, or unseeded randomness in escape-hatch code."
|
|
738
738
|
});
|
|
739
739
|
}
|
|
740
740
|
return findings;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stereoframe",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Declarative, deterministic 3D video on three.js — scaffold, lint, validate, and render compositions built for AI agents.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"test": "bun test"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"stereoframe-runtime": "0.2.
|
|
28
|
+
"stereoframe-runtime": "0.2.6",
|
|
29
29
|
"puppeteer": "^24.0.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|