create-zen 1.5.2 → 1.5.3

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 +5 -5
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -43,7 +43,7 @@ const getProjectName = async () => {
43
43
  {
44
44
  type: 'input',
45
45
  name: 'projectName',
46
- message: 'Project name (target directory):',
46
+ message: 'Project name:',
47
47
  default: 'zen-starter-app',
48
48
  prefix: '◇'
49
49
  }
@@ -57,7 +57,7 @@ const getProjectName = async () => {
57
57
  const getProjectVersion = async () => {
58
58
  console.log();
59
59
  console.log(' ' + '◇' + ' ' + prompt('Select ZEN starter version:'));
60
- console.log(' ' + description('(↑/↓ to navigate, space to select, enter to confirm)'));
60
+ console.log();
61
61
 
62
62
  const { version } = await inquirer.default.prompt([
63
63
  {
@@ -66,11 +66,11 @@ const getProjectVersion = async () => {
66
66
  message: '',
67
67
  choices: [
68
68
  {
69
- name: 'Standard Version (Full-featured with all components)',
69
+ name: 'Standard Version (Full-featured with all components)',
70
70
  value: 'standard'
71
71
  },
72
72
  {
73
- name: 'Lite Version (Lightweight for static sites)',
73
+ name: 'Lite Version (Essential features only)',
74
74
  value: 'lite'
75
75
  }
76
76
  ],
@@ -93,7 +93,7 @@ const getRepositoryUrl = (isLite) => {
93
93
  // Get version description
94
94
  const getVersionDescription = (isLite) => {
95
95
  if (isLite) {
96
- return 'Lite Version - Lightweight for static sites';
96
+ return 'Lite Version - Essential features only';
97
97
  }
98
98
  return 'Standard Version - Full-featured with all components';
99
99
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zen",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "✨ Create a new web development project with modern setup powered by Vite 🚀",
5
5
  "bin": {
6
6
  "create-zen": "./index.js"