umpordez 1.6.1 → 1.6.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.
- package/create.mjs +3 -3
- package/package.json +1 -1
package/create.mjs
CHANGED
|
@@ -126,7 +126,7 @@ async function promptComponents() {
|
|
|
126
126
|
));
|
|
127
127
|
} else if (site && mobile && adminUi) {
|
|
128
128
|
const { landing } = await inquirer.prompt([{
|
|
129
|
-
type: '
|
|
129
|
+
type: 'select',
|
|
130
130
|
name: 'landing',
|
|
131
131
|
message: 'Landing page flavor:',
|
|
132
132
|
choices: [
|
|
@@ -298,7 +298,7 @@ async function promptProjectDetails() {
|
|
|
298
298
|
filter: (v) => v.trim().startsWith('#') ? v.trim() : `#${v.trim()}`,
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
|
-
type: '
|
|
301
|
+
type: 'select',
|
|
302
302
|
name: 'defaultTheme',
|
|
303
303
|
message: 'Default theme:',
|
|
304
304
|
choices: [
|
|
@@ -340,7 +340,7 @@ async function promptProjectDetails() {
|
|
|
340
340
|
: 'Lowercase alphanumeric, dashes allowed',
|
|
341
341
|
},
|
|
342
342
|
{
|
|
343
|
-
type: '
|
|
343
|
+
type: 'select',
|
|
344
344
|
name: 'splashStyle',
|
|
345
345
|
message: 'Splash screen:',
|
|
346
346
|
choices: [
|
package/package.json
CHANGED