create-nodality 1.0.0-beta.27 → 1.0.0-beta.29
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/bin/index.js +4 -6
- package/package.json +1 -1
package/bin/index.js
CHANGED
@@ -135,14 +135,12 @@ export default {
|
|
135
135
|
|
136
136
|
|
137
137
|
// ANSI escape codes for green text and reset
|
138
|
-
const green = '\x1b[32m';
|
139
|
-
const reset = '\x1b[0m';
|
140
|
-
|
141
138
|
|
142
|
-
const
|
143
|
-
|
144
|
-
|
139
|
+
const bold = '\x1b[1m';
|
140
|
+
const color1abc9c = '\x1b[38;5;37m';
|
141
|
+
const reset = '\x1b[0m';
|
145
142
|
|
143
|
+
console.log(`\n${color1abc9c}${bold}%s${reset}\n`, `Your project "${projectName}" is ready! 🎉`);
|
146
144
|
|
147
145
|
console.log("\nAll done! Run:\n");
|
148
146
|
console.log(` cd ${projectName}`);
|