mirror of
https://github.com/neynarxyz/create-farcaster-mini-app.git
synced 2025-11-16 08:08:56 -05:00
fix: default to skip primary category
This commit is contained in:
parent
f350aaa897
commit
d38bce50c5
@ -192,6 +192,9 @@ export async function init() {
|
|||||||
name: 'primaryCategory',
|
name: 'primaryCategory',
|
||||||
message: 'It is strongly recommended to choose a primary category and tags to help users discover your mini app.\n\nSelect a primary category:',
|
message: 'It is strongly recommended to choose a primary category and tags to help users discover your mini app.\n\nSelect a primary category:',
|
||||||
choices: [
|
choices: [
|
||||||
|
new inquirer.Separator(),
|
||||||
|
{ name: 'Skip (not recommended)', value: null },
|
||||||
|
new inquirer.Separator(),
|
||||||
{ name: 'Games', value: 'games' },
|
{ name: 'Games', value: 'games' },
|
||||||
{ name: 'Social', value: 'social' },
|
{ name: 'Social', value: 'social' },
|
||||||
{ name: 'Finance', value: 'finance' },
|
{ name: 'Finance', value: 'finance' },
|
||||||
@ -204,11 +207,9 @@ export async function init() {
|
|||||||
{ name: 'Education', value: 'education' },
|
{ name: 'Education', value: 'education' },
|
||||||
{ name: 'Developer Tools', value: 'developer-tools' },
|
{ name: 'Developer Tools', value: 'developer-tools' },
|
||||||
{ name: 'Entertainment', value: 'entertainment' },
|
{ name: 'Entertainment', value: 'entertainment' },
|
||||||
{ name: 'Art & Creativity', value: 'art-creativity' },
|
{ name: 'Art & Creativity', value: 'art-creativity' }
|
||||||
new inquirer.Separator(),
|
|
||||||
{ name: 'Skip (not recommended)', value: null }
|
|
||||||
],
|
],
|
||||||
default: 'social'
|
default: null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@neynar/create-farcaster-mini-app",
|
"name": "@neynar/create-farcaster-mini-app",
|
||||||
"version": "1.2.25",
|
"version": "1.2.26",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"private": false,
|
"private": false,
|
||||||
"access": "public",
|
"access": "public",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user