From aa2ae7594022f68d22853f684a32df28c0bea33a Mon Sep 17 00:00:00 2001 From: cchang-vassar <79338042+cchang-vassar@users.noreply.github.com> Date: Wed, 7 Aug 2024 14:34:06 -0400 Subject: [PATCH] change all "package" to " package" --- templates/cli/src/index.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/templates/cli/src/index.js b/templates/cli/src/index.js index cd97adf7..da8411c0 100644 --- a/templates/cli/src/index.js +++ b/templates/cli/src/index.js @@ -56,7 +56,7 @@ async function runPrompts() { }); const name = await input({ - message: "What do you want to call this package?", + message: `What do you want to call this ${type == "plugin" ? "plugin" : "extension"} package?`, required: true, transformer: (input) => { // convert to hyphen case @@ -73,12 +73,14 @@ async function runPrompts() { }); const description = await input({ - message: "Enter a brief description of the package", + message: `Enter a brief description of the ${ + type == "plugin" ? "plugin" : "extension" + } package.`, required: true, }); const author = await input({ - message: "Who is the author of this package?", + message: `Who is the author of this ${type == "plugin" ? "plugin" : "extension"} package?`, required: true, });