remotion-ui 0.2.0 → 0.2.1
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 +14 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -21,6 +21,20 @@ Components are copied into your project as source files. You own the code.
|
|
|
21
21
|
| `remotion-ui add <name>` | Add component(s) from the registry |
|
|
22
22
|
| `remotion-ui search -q <query>` | Search the registry |
|
|
23
23
|
| `remotion-ui view <name>` | View registry item metadata |
|
|
24
|
+
| `remotion-ui diff <name>` | Diff installed vs registry |
|
|
25
|
+
| `remotion-ui update <name>` | Re-install from registry |
|
|
26
|
+
| `remotion-ui build [registry.json]` | Build a custom registry |
|
|
27
|
+
|
|
28
|
+
## Publishing (maintainers)
|
|
29
|
+
|
|
30
|
+
From the monorepo root, with a granular npm token (read/write + bypass 2FA):
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
cp .env.example .env # add NPM_TOKEN=...
|
|
34
|
+
pnpm publish:cli
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Or in GitHub Actions: add `NPM_TOKEN` as a repo secret and run the **Publish CLI** workflow.
|
|
24
38
|
|
|
25
39
|
## Configuration
|
|
26
40
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "remotion-ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Add Remotion video components to your project — copy-paste, fully customisable.",
|
|
5
5
|
"homepage": "https://remotionui.com",
|
|
6
6
|
"repository": {
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"prepublishOnly": "pnpm build",
|
|
45
45
|
"dev": "tsup --watch",
|
|
46
46
|
"lint": "tsc --noEmit",
|
|
47
|
-
"test": "vitest run"
|
|
47
|
+
"test": "vitest run",
|
|
48
|
+
"publish:npm": "npm publish --access public"
|
|
48
49
|
},
|
|
49
50
|
"dependencies": {
|
|
50
51
|
"commander": "^13.1.0",
|