From 21929f3a05c900b3d8a8bb6e5aee29b2b30df199 Mon Sep 17 00:00:00 2001 From: Eric Satterwhite Date: Thu, 2 Apr 2026 00:22:19 -0500 Subject: [PATCH] fix(command): fixes a prompt alias mismatch with select select and check box prompt types were fliped such that specifying type checkbox would presnt a single select input --- lib/command/prompt-map.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/command/prompt-map.js b/lib/command/prompt-map.js index 43ad6eb..bcc0333 100644 --- a/lib/command/prompt-map.js +++ b/lib/command/prompt-map.js @@ -3,12 +3,12 @@ const {checkbox, confirm, input, number, password, select} = require('@inquirer/prompts') module.exports = new Map([ - ['checkbox', select] + ['checkbox', checkbox] , ['confirm', confirm] , ['input', input] , ['number', number] , ['password', password] -, ['select', checkbox] +, ['select', select] , ['multiselect', checkbox] , ['text', input] ])