@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.
Files changed (2) hide show
  1. package/README.md +4 -2
  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 dlx @uns-kit/cli create my-uns-app
8
+ pnpm --package=@uns-kit/cli dlx uns-kit create my-uns-app
9
9
  # or after installing globally
10
- yarn global add @uns-kit/cli
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uns-kit/cli",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Command line scaffolding tool for UNS applications",
5
5
  "type": "module",
6
6
  "license": "MIT",