From d38bce50c5b4507a5b0e0cff173e957b5ea49b14 Mon Sep 17 00:00:00 2001 From: veganbeef Date: Fri, 9 May 2025 16:57:08 -0700 Subject: [PATCH] fix: default to skip primary category --- bin/init.js | 9 +++++---- package.json | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/bin/init.js b/bin/init.js index da8aaa1..bc63adb 100644 --- a/bin/init.js +++ b/bin/init.js @@ -192,6 +192,9 @@ export async function init() { 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:', choices: [ + new inquirer.Separator(), + { name: 'Skip (not recommended)', value: null }, + new inquirer.Separator(), { name: 'Games', value: 'games' }, { name: 'Social', value: 'social' }, { name: 'Finance', value: 'finance' }, @@ -204,11 +207,9 @@ export async function init() { { name: 'Education', value: 'education' }, { name: 'Developer Tools', value: 'developer-tools' }, { name: 'Entertainment', value: 'entertainment' }, - { name: 'Art & Creativity', value: 'art-creativity' }, - new inquirer.Separator(), - { name: 'Skip (not recommended)', value: null } + { name: 'Art & Creativity', value: 'art-creativity' } ], - default: 'social' + default: null }, { type: 'input', diff --git a/package.json b/package.json index ba870e1..bf86c47 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@neynar/create-farcaster-mini-app", - "version": "1.2.25", + "version": "1.2.26", "type": "module", "private": false, "access": "public",