@fersonull/create-npm 1.1.0 → 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/dist/cli.js +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
|
```
|
package/dist/cli.js
CHANGED
|
@@ -123,10 +123,10 @@ async function main() {
|
|
|
123
123
|
utils_1.log.error("Dependency installation failed. You can manually install it later.");
|
|
124
124
|
}
|
|
125
125
|
else {
|
|
126
|
-
utils_1.log.success("
|
|
126
|
+
utils_1.log.success("Dependencies installed successfully.");
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
|
-
utils_1.log.info(
|
|
129
|
+
utils_1.log.info(`Project created at ${projectPath}`);
|
|
130
130
|
console.log("\nNext steps:");
|
|
131
131
|
console.log(` cd ${projectName}`);
|
|
132
132
|
console.log(" npm run dev\n");
|