create-zhx-monorepo 0.1.3 → 0.1.5
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 +6 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,12 +6,14 @@ A CLI package to quickly generate a **Monorepo Starter** monorepo for full-stack
|
|
|
6
6
|
|
|
7
7
|
## Usage
|
|
8
8
|
|
|
9
|
+
You can use this CLI in two ways:
|
|
10
|
+
|
|
9
11
|
```bash
|
|
10
|
-
#
|
|
11
|
-
pnpm
|
|
12
|
+
# Using pnpm create
|
|
13
|
+
pnpm create zhx-monorepo my-new-project
|
|
12
14
|
|
|
13
|
-
#
|
|
14
|
-
pnpm create-zhx-monorepo my-new-project
|
|
15
|
+
# Using pnpm dlx
|
|
16
|
+
pnpm dlx create-zhx-monorepo my-new-project
|
|
15
17
|
```
|
|
16
18
|
|
|
17
19
|
This will generate a ready-to-use monorepo under `my-new-project` with:
|