@fersonull/create-npm 1.1.1 → 1.1.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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,9 +7,9 @@ A production-ready scaffolding tool for setting up NPM projects.
|
|
|
7
7
|
**Do not install this package globally or as a dependency.** Instead, run it directly using `npx` or `npm create`:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
#
|
|
10
|
+
# Using npm create
|
|
11
11
|
npm create @fersonull/npm@latest <project-name>
|
|
12
12
|
|
|
13
|
-
# Alternative: Using npx directly
|
|
13
|
+
# Alternative (Recommended): Using npx directly
|
|
14
14
|
npx create-npm <project-name>
|
|
15
15
|
```
|