3 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
NPM Auto Deprecate / NPM Auto Deprecate (push) Successful in 31s
CodeQL / Analyze (javascript) (push) Failing after 2m4s
2025-07-28 20:19:31 +05:30
github-actions[bot]
58677cc15d chore(main): release 1.4.0 (#152)
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
Continuous Delivery / Publishing Dev (push) Has been cancelled
Continuous Integration / Testing (push) Has been cancelled
NPM Auto Deprecate / NPM Auto Deprecate (push) Has been cancelled
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-02-06 22:17:01 -06:00
4 changed files with 500 additions and 357 deletions

View File

@@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file.
## [1.4.0](https://github.com/sern-handler/cli/compare/v1.3.5...v1.4.0) (2025-02-07)
### Features
* watch command execute on successful build ([#151](https://github.com/sern-handler/cli/issues/151)) ([1695956](https://github.com/sern-handler/cli/commit/1695956350a55bb4a28839b427d1bf46cf518b01))
## [1.3.5](https://github.com/sern-handler/cli/compare/v1.3.4...v1.3.5) (2025-01-29)

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.3.5",
"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,
};