@primitiv-ui/cli-linux-arm64-gnu 0.1.0 → 0.1.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 +24 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# @primitiv-ui/cli-linux-arm64-gnu
|
|
2
|
+
|
|
3
|
+
The Primitiv UI CLI binary for **Linux arm64 (glibc)** — one of the per-platform
|
|
4
|
+
packages behind the [`primitiv-ui`](https://www.npmjs.com/package/primitiv-ui)
|
|
5
|
+
command.
|
|
6
|
+
|
|
7
|
+
**You don't install this directly.** Install the `primitiv-ui` wrapper; it
|
|
8
|
+
lists every platform package as an `optionalDependency`, and your package
|
|
9
|
+
manager installs only the one matching your OS/CPU (`linux` / `arm64`),
|
|
10
|
+
skipping the rest. The wrapper's launcher then resolves the binary from
|
|
11
|
+
whichever platform package landed and runs it.
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
npm i -D primitiv-ui
|
|
15
|
+
npx primitiv add button
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
If your platform isn't packaged, install from source instead:
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
cargo install primitiv-cli
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Part of the [Primitiv](https://github.com/primitiv-ui/primitiv) design system.
|