2 Commits

Author SHA1 Message Date
renovate[bot]
ae0338e1cb chore(deps): replace google-github-actions/release-please-action action with googleapis/release-please-action 2025-11-02 07:32:09 +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 2m4s
NPM Auto Deprecate / NPM Auto Deprecate (push) Successful in 2m29s
2025-07-28 20:19:31 +05:30
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ jobs:
Release:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
- uses: googleapis/release-please-action@v3
id: release
with:
release-type: node

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": {

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