2 Commits

Author SHA1 Message Date
renovate[bot]
a1bb64187b fix(deps): update all non-major dependencies 2026-05-25 12:39:41 +00:00
Peter-MJ-Parker
2e66d6cfad chore: fix git initialization prompt message (grammar) (#155)
Some checks failed
Continuous Delivery / Publishing Dev (push) Has been cancelled
Continuous Integration / Testing (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Failing after 6m28s
NPM Auto Deprecate / NPM Auto Deprecate (push) Successful in 31s
2025-07-28 20:19:31 +05:30
3 changed files with 493 additions and 357 deletions

836
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -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": {
@@ -35,23 +35,23 @@
"@esbuild-kit/cjs-loader": "^2.4.2",
"@esbuild-kit/esm-loader": "^2.5.5",
"colorette": "2.0.20",
"commander": "11.0.0",
"commander": "11.1.0",
"dotenv": "^16.3.1",
"esbuild": "^0.19.1",
"esbuild": "^0.28.0",
"execa": "7.2.0",
"find-up": "6.3.0",
"glob": "^10.3.3",
"ora": "6.3.1",
"prompts": "2.4.2",
"undici": "5.23.0"
"undici": "5.29.0"
},
"devDependencies": {
"@babel/parser": "^7.22.5",
"@favware/npm-deprecate": "1.0.7",
"@types/prompts": "2.4.4",
"@types/prompts": "2.4.9",
"prettier": "2.8.8",
"tsup": "^6.7.0",
"typescript": "5.2.2"
"typescript": "5.9.3"
},
"engines": {
"node": ">= 18.16.x"

View File

@@ -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,
};