create-pnpm-custom-app 1.0.0 → 1.0.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 +16 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,18 +17,28 @@
|
|
|
17
17
|
|
|
18
18
|
## Quick Start
|
|
19
19
|
|
|
20
|
+
### Recommended: Use npx (always latest version)
|
|
21
|
+
|
|
20
22
|
```bash
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
npx create-pnpm-custom-app@latest my-project
|
|
24
|
+
```
|
|
23
25
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
+
### Alternative: Global Installation
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
# Install globally
|
|
30
|
+
npm install -g create-pnpm-custom-app
|
|
26
31
|
|
|
27
|
-
#
|
|
28
|
-
pnpm add -g create-pnpm-custom-app
|
|
32
|
+
# Use anywhere
|
|
29
33
|
create-pnpm-custom-app my-project
|
|
30
34
|
```
|
|
31
35
|
|
|
36
|
+
### With pnpm
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pnpm create pnpm-custom-app my-project
|
|
40
|
+
```
|
|
41
|
+
|
|
32
42
|
## Project Structure
|
|
33
43
|
|
|
34
44
|
```txt
|