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.
Files changed (2) hide show
  1. package/bin/index.js +4 -6
  2. 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 confetti = '🎉';
143
-
144
- console.log(`\n${green}%s${reset}\n`, `${confetti} Your project "${projectName}" is ready! ${confetti}`);
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}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nodality",
3
- "version": "1.0.0-beta.27",
3
+ "version": "1.0.0-beta.29",
4
4
  "description": "Project scaffolding tool for Nodality library",
5
5
  "bin": {
6
6
  "create-nodality": "bin/index.js"