@uns-kit/cli 0.0.1 → 0.0.2
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 +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,12 +5,14 @@ Command line scaffolding tool for the UNS toolkit. It bootstraps a new project w
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
pnpm
|
|
8
|
+
pnpm --package=@uns-kit/cli dlx uns-kit create my-uns-app
|
|
9
9
|
# or after installing globally
|
|
10
|
-
|
|
10
|
+
npm install -g @uns-kit/cli
|
|
11
11
|
uns-kit create my-uns-app
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
> The package exposes both `uns-kit` and `uns` binaries. When using `pnpm dlx`, specify which one to run (`uns-kit` above). If you install globally you can use the shorter `uns create …` alias.
|
|
15
|
+
|
|
14
16
|
The command creates a new directory, copies the starter template, and pins `@uns-kit/core` to the currently published version. After the scaffold finishes:
|
|
15
17
|
|
|
16
18
|
```bash
|