@rootnative/cli 0.0.0-alpha.12 → 0.0.0-alpha.13
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/llms.txt +14 -2
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
# @rootnative/cli — CLI for RootNative UI
|
|
2
2
|
|
|
3
|
-
> Version: 0.0.0-alpha.
|
|
3
|
+
> Version: 0.0.0-alpha.13
|
|
4
4
|
> Binary: `rootnative`
|
|
5
5
|
> Requirements: Node >=18
|
|
6
6
|
|
|
7
7
|
## CLI (`rootnative`)
|
|
8
8
|
|
|
9
|
+
### Which command
|
|
10
|
+
|
|
11
|
+
| You want | Run |
|
|
12
|
+
| --- | --- |
|
|
13
|
+
| A new project from scratch | `rootnative create` |
|
|
14
|
+
| The copy-paste workflow in an existing project | `rootnative init` |
|
|
15
|
+
| Copy a component (and its dependencies) into the project | `rootnative add <component>` |
|
|
16
|
+
| Refresh installed component files from the pinned registry | `rootnative update` |
|
|
17
|
+
| Move to a new release — bump `@rootnative/core` and the registry pin | `rootnative upgrade` |
|
|
18
|
+
| See what is available and what is installed | `rootnative list` |
|
|
19
|
+
| Diagnose a broken setup | `rootnative doctor` |
|
|
20
|
+
|
|
9
21
|
### Commands
|
|
10
22
|
|
|
11
23
|
#### `rootnative create [name]`
|
|
@@ -50,7 +62,7 @@ Creates `rootnative.json`:
|
|
|
50
62
|
"$schema": "https://rootnative.github.io/ui/schema.json",
|
|
51
63
|
"aliases": { "components": "@/components/ui", "lib": "@/lib" },
|
|
52
64
|
"registryUrl": "https://raw.githubusercontent.com/rootnative/ui",
|
|
53
|
-
"registryVersion": "v0.0.0-alpha.
|
|
65
|
+
"registryVersion": "v0.0.0-alpha.13"
|
|
54
66
|
}
|
|
55
67
|
```
|
|
56
68
|
|