hyperframes 0.7.42 → 0.7.44
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 +5 -2
- package/dist/cli.js +1247 -430
- package/dist/commands/contrast-audit.browser.js +51 -25
- package/dist/docker/Dockerfile.render +29 -23
- package/dist/hyperframe-runtime.js +26 -26
- package/dist/hyperframe.manifest.json +1 -1
- package/dist/hyperframe.runtime.iife.js +26 -26
- package/dist/skills/hyperframes/SKILL.md +19 -10
- package/dist/studio/assets/{index-HvOJjrGO.js → index-8c83yScV.js} +1 -1
- package/dist/studio/assets/{index-D4F6SvIQ.js → index-BiZvHXPu.js} +1 -1
- package/dist/studio/assets/{index-3Li9WN_Z.js → index-BtAysyap.js} +3 -3
- package/dist/studio/index.html +1 -1
- package/dist/templates/_shared/AGENTS.md +5 -2
- package/dist/templates/_shared/CLAUDE.md +5 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -40,10 +40,13 @@ npx hyperframes preview --port 4567
|
|
|
40
40
|
|
|
41
41
|
### `render`
|
|
42
42
|
|
|
43
|
-
Render a composition to MP4
|
|
43
|
+
Render a composition to MP4. Run from the project directory; the positional
|
|
44
|
+
argument is the project directory (not a file), so render the project's
|
|
45
|
+
`index.html` directly, or point at a specific composition file with `-c`:
|
|
44
46
|
|
|
45
47
|
```bash
|
|
46
|
-
npx hyperframes render
|
|
48
|
+
npx hyperframes render -o output.mp4
|
|
49
|
+
npx hyperframes render -c ./my-composition.html -o output.mp4
|
|
47
50
|
```
|
|
48
51
|
|
|
49
52
|
### `lint`
|