@vosjs/cli 0.27.0 → 0.28.0
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 +10 -10
- package/dist/{chunk-IJ5A4TL3.js → chunk-T35XY4YW.js} +120 -5
- package/dist/chunk-T35XY4YW.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/{run-XR464TW5.js → run-QAI3HGTK.js} +2 -2
- package/package.json +4 -4
- package/schema/doc.schema.json +15 -3
- package/dist/chunk-IJ5A4TL3.js.map +0 -1
- /package/dist/{run-XR464TW5.js.map → run-QAI3HGTK.js.map} +0 -0
package/dist/cli.js
CHANGED
|
@@ -495,7 +495,7 @@ async function cmdCheck(argv) {
|
|
|
495
495
|
return result.ok ? EXIT_OK : EXIT_ERROR;
|
|
496
496
|
}
|
|
497
497
|
async function delegate(argv, viaAlias = false) {
|
|
498
|
-
const { run } = await import("./run-
|
|
498
|
+
const { run } = await import("./run-QAI3HGTK.js");
|
|
499
499
|
if (viaAlias && argv[0]) {
|
|
500
500
|
process.stderr.write(
|
|
501
501
|
`note: "vos voila ${argv[0]}" is now "vos ${argv[0]}".
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vosjs/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "The vos CLI: record the real product from a scripted browser flow, auto-zoom from the cursor track, cut as data in doc.json, render deterministic video and stills, deliver a release's media per destination spec, and sync with vos.so. One binary, every verb, MIT.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"playwright": "^1.49.0",
|
|
51
51
|
"@vosjs/core": "^0.23.7",
|
|
52
52
|
"@vosjs/editor": "^1.3.1",
|
|
53
|
-
"@vosjs/elements": "^0.8.1",
|
|
54
|
-
"@vosjs/render-core": "^0.2.6",
|
|
55
53
|
"@vosjs/shared": "^0.4.1",
|
|
56
|
-
"@vosjs/studio-core": "^0.17.0",
|
|
57
54
|
"@vosjs/timeline": "^0.4.1",
|
|
55
|
+
"@vosjs/studio-core": "^0.18.0",
|
|
56
|
+
"@vosjs/render-core": "^0.2.6",
|
|
57
|
+
"@vosjs/elements": "^0.8.1",
|
|
58
58
|
"@vosjs/tween": "^0.8.2"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
package/schema/doc.schema.json
CHANGED
|
@@ -48,6 +48,10 @@
|
|
|
48
48
|
"maximum": 30,
|
|
49
49
|
"description": "LEGACY spelling of a freeze at this segment's end, read into `freeze` on every path; write `freeze` instead"
|
|
50
50
|
},
|
|
51
|
+
"anim": {
|
|
52
|
+
"$ref": "#/definitions/anim",
|
|
53
|
+
"description": "how this clip meets the clips beside it: `enter` is its arrival at the boundary with the clip BEFORE it, `exit` its leaving at the boundary with the clip AFTER it (slide | fade | scale | none; a slide names its `side`, a step its `seconds`, 0.15..2, never longer than half the shorter clip). An exit and the next clip's enter at one boundary run together (a push); one alone moves one card. The first clip's enter and the last clip's exit are the card's own (frame.anim) and are ignored. Absent = a hard cut"
|
|
54
|
+
},
|
|
51
55
|
"media": {
|
|
52
56
|
"type": "string",
|
|
53
57
|
"description": "the media this belongs to: a `media[].id`; absent = the primary, `source`"
|
|
@@ -739,7 +743,9 @@
|
|
|
739
743
|
"typewriter",
|
|
740
744
|
"tilt-in",
|
|
741
745
|
"pull-out",
|
|
742
|
-
"recede"
|
|
746
|
+
"recede",
|
|
747
|
+
"slide",
|
|
748
|
+
"scale"
|
|
743
749
|
]
|
|
744
750
|
},
|
|
745
751
|
{
|
|
@@ -757,7 +763,9 @@
|
|
|
757
763
|
"typewriter",
|
|
758
764
|
"tilt-in",
|
|
759
765
|
"pull-out",
|
|
760
|
-
"recede"
|
|
766
|
+
"recede",
|
|
767
|
+
"slide",
|
|
768
|
+
"scale"
|
|
761
769
|
]
|
|
762
770
|
},
|
|
763
771
|
"seconds": {
|
|
@@ -766,6 +774,10 @@
|
|
|
766
774
|
"maximum": 3,
|
|
767
775
|
"description": "seconds the step takes (the house length when absent)"
|
|
768
776
|
},
|
|
777
|
+
"side": {
|
|
778
|
+
"enum": ["left", "right", "up", "down"],
|
|
779
|
+
"description": "a slide's side: where an enter comes FROM, where an exit goes TO (absent: in from the right, out to the left)"
|
|
780
|
+
},
|
|
769
781
|
"unit": {
|
|
770
782
|
"enum": ["block", "line", "word", "char"],
|
|
771
783
|
"description": "words only: the unit the step animates by"
|
|
@@ -800,7 +812,7 @@
|
|
|
800
812
|
"description": "props only: what it does while it stays"
|
|
801
813
|
}
|
|
802
814
|
},
|
|
803
|
-
"description": "THE animation vocabulary, one for every visual primitive. The card enters by tilt-in | pull-out | rise | fade and leaves by recede | fade; words enter by none | fade | rise | pop | blur | typewriter and leave by none | fade | rise; an image or video clip enters and leaves by none | fade | rise; a prop idles by spin | float. Absent = the house default; none = an explicit nothing"
|
|
815
|
+
"description": "THE animation vocabulary, one for every visual primitive. The card enters by tilt-in | pull-out | rise | fade | slide and leaves by recede | fade; words enter by none | fade | rise | pop | blur | typewriter and leave by none | fade | rise; an image or video clip enters and leaves by none | fade | rise; a prop idles by spin | float; a FOOTAGE clip meets the clip beside it by slide | fade | scale (a transition at the boundary: the incoming clip plays live while the outgoing, frozen on its last frame, moves away; a slide names its side). Absent = the house default; none = an explicit nothing"
|
|
804
816
|
},
|
|
805
817
|
"overlays": {
|
|
806
818
|
"type": "array",
|