create-nodality 1.0.0-beta.25 → 1.0.0-beta.27

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 +12 -1
  2. package/package.json +2 -2
package/bin/index.js CHANGED
@@ -113,7 +113,7 @@ export default {
113
113
  start: "npx serve . -l 4000",
114
114
  },
115
115
  dependencies: {
116
- nodality: "^1.0.0-beta.22",
116
+ nodality: "^1.0.0-beta.30",
117
117
  },
118
118
  devDependencies: {
119
119
  webpack: "^5.0.0",
@@ -133,6 +133,17 @@ export default {
133
133
  console.log("Building with Webpack...");
134
134
  execSync(`npx webpack`, { cwd: projectPath, stdio: "inherit" });
135
135
 
136
+
137
+ // ANSI escape codes for green text and reset
138
+ const green = '\x1b[32m';
139
+ const reset = '\x1b[0m';
140
+
141
+
142
+ const confetti = '🎉';
143
+
144
+ console.log(`\n${green}%s${reset}\n`, `${confetti} Your project "${projectName}" is ready! ${confetti}`);
145
+
146
+
136
147
  console.log("\nAll done! Run:\n");
137
148
  console.log(` cd ${projectName}`);
138
149
  console.log(" npm run build # Rebuild your project");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nodality",
3
- "version": "1.0.0-beta.25",
3
+ "version": "1.0.0-beta.27",
4
4
  "description": "Project scaffolding tool for Nodality library",
5
5
  "bin": {
6
6
  "create-nodality": "bin/index.js"
@@ -18,6 +18,6 @@
18
18
  "author": "Filip Vabrousek",
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
- "nodality": "^1.0.0-beta.22"
21
+ "nodality": "^1.0.0-beta.30"
22
22
  }
23
23
  }