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.
Files changed (2) hide show
  1. package/create.mjs +3 -3
  2. 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: 'list',
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: 'list',
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: 'list',
343
+ type: 'select',
344
344
  name: 'splashStyle',
345
345
  message: 'Splash screen:',
346
346
  choices: [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "umpordez",
3
3
  "type": "module",
4
- "version": "1.6.1",
4
+ "version": "1.6.2",
5
5
  "description": "SaaS starter kit generator — server, admin SPA, public site (i18n), mobile app (offline-first, IAP, native push)",
6
6
  "main": "cli.mjs",
7
7
  "scripts": {