From 2e66d6cfad2ef719a2c1725f34098ab0e228d444 Mon Sep 17 00:00:00 2001 From: Peter-MJ-Parker <34216187+Peter-MJ-Parker@users.noreply.github.com> Date: Mon, 28 Jul 2025 09:49:31 -0500 Subject: [PATCH] chore: fix git initialization prompt message (grammar) (#155) --- package.json | 2 +- src/prompts/init.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3eb466c..7e8b5d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sern/cli", - "version": "1.4.0", + "version": "1.4.1", "description": "Official CLI for @sern/handler", "exports": "./dist/index.js", "bin": { diff --git a/src/prompts/init.ts b/src/prompts/init.ts index 92f3847..5d9ec66 100644 --- a/src/prompts/init.ts +++ b/src/prompts/init.ts @@ -49,7 +49,7 @@ export const npmInit: PromptObject = { export const gitInit: PromptObject = { name: 'gitinit', type: 'confirm', - message: `Do you want to ${blueBright('me')} to initialize git?`, + message: `Do you want ${blueBright('me')} to initialize git?`, initial: true, };