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.
- package/index.js +5 -5
- 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
|
|
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(
|
|
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: '
|
|
69
|
+
name: 'Standard Version (Full-featured with all components)',
|
|
70
70
|
value: 'standard'
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
|
-
name: '
|
|
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 -
|
|
96
|
+
return 'Lite Version - Essential features only';
|
|
97
97
|
}
|
|
98
98
|
return 'Standard Version - Full-featured with all components';
|
|
99
99
|
};
|