hyperframes 0.8.26 → 0.8.28
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 +24 -0
- package/dist/cli.js +1719 -842
- package/dist/commands/layout-audit.browser.js +12 -1
- package/dist/fontLocalizeCli.js +582 -144
- package/dist/hyperframe-runtime.js +17 -17
- package/dist/hyperframe.manifest.json +1 -1
- package/dist/hyperframe.runtime.iife.js +17 -17
- package/dist/hyperframes-player.global.js +1 -1
- package/dist/studio/assets/{hyperframes-player-C-CArn13.js → hyperframes-player-Bldv3Gqv.js} +1 -1
- package/dist/studio/assets/{index-BIXyJgK5.js → index-B50A8gg2.js} +1 -1
- package/dist/studio/assets/{index-D5yni1t6.js → index-O3ilbgfR.js} +3 -3
- package/dist/studio/assets/{index-pfeP2Y63.js → index-ZfDXlqBQ.js} +1 -1
- package/dist/studio/index.html +1 -1
- package/dist/studio/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,6 +71,30 @@ npx hyperframes render -o output.mp4
|
|
|
71
71
|
npx hyperframes render -c ./my-composition.html -o output.mp4
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
+
### `publish`
|
|
75
|
+
|
|
76
|
+
Upload a project directory and get a hosted URL that keeps working after the CLI exits:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
npx hyperframes publish
|
|
80
|
+
npx hyperframes publish ./my-video
|
|
81
|
+
npx hyperframes publish --public
|
|
82
|
+
npx hyperframes publish --yes
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Signed-out publishing returns a URL with a claim token; opening it lets someone
|
|
86
|
+
sign in and claim the project. Sign in first with `npx hyperframes auth login`
|
|
87
|
+
to publish an owned project you can update. Use `--public` to make the claimed
|
|
88
|
+
project visible to anyone, and `--yes` to skip the confirmation prompt.
|
|
89
|
+
|
|
90
|
+
Signed-in publishers can use `--update <url-or-id>` to target an existing project
|
|
91
|
+
or `--space <space-id>` to publish into a shared team space. If the requested
|
|
92
|
+
project is missing or inaccessible, publishing can create a new project instead;
|
|
93
|
+
check the printed URL and status.
|
|
94
|
+
|
|
95
|
+
See the [publish reference](https://hyperframes.heygen.com/packages/cli#publish)
|
|
96
|
+
for all options, including video proxy settings.
|
|
97
|
+
|
|
74
98
|
### `lint`
|
|
75
99
|
|
|
76
100
|
Validate your Hyperframes HTML:
|