create-zen 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -37,8 +37,8 @@ console.log();
37
37
  console.log('👉', cyan('Next steps:'));
38
38
  console.log();
39
39
  console.log(` 📁 ${yellow('cd ' + PROJECT_NAME)}`);
40
- console.log(' 📦', yellow('npm install'));
41
- console.log(' 🧑‍💻', yellow('npm run dev'));
40
+ console.log(' 📦', yellow('bun install'));
41
+ console.log(' 🧑‍💻', yellow('bun run dev'));
42
42
  console.log();
43
43
  console.log('🌿 Happy coding!');
44
44
  console.log();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-zen",
3
- "version": "1.0.1",
4
- "description": "✨ Create a new project from dmitry-conquer/zen-starter template 🚀",
3
+ "version": "1.0.2",
4
+ "description": "✨ Create a new project from dmitry-conquer/zen-starter template with bun 🚀",
5
5
  "bin": {
6
6
  "create-zen": "./index.js"
7
7
  },