mirror of
https://github.com/chenasraf/massarg.git
synced 2026-05-18 01:39:05 +00:00
feat: don't auto-wrap footer text
This commit is contained in:
@@ -28,9 +28,10 @@
|
||||
"@semantic-release/exec": "^6.0.3",
|
||||
"@semantic-release/git": "^10.0.1",
|
||||
"@types/jest": "^29.5.11",
|
||||
"@types/node": "^20.11.5",
|
||||
"@types/node": "^20.11.10",
|
||||
"gh-pages": "^6.1.1",
|
||||
"jest": "^29.7.0",
|
||||
"prettier": "^3.2.4",
|
||||
"semantic-release": "^23.0.0",
|
||||
"ts-jest": "^29.1.2",
|
||||
"ts-node": "^10.9.2",
|
||||
|
||||
370
pnpm-lock.yaml
generated
370
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -313,7 +313,7 @@ export class HelpGenerator {
|
||||
]),
|
||||
examples.length &&
|
||||
indent(['', format('Examples:', this.config.subtitleStyle), '', indent(examples)]),
|
||||
footerText.length && ['', _wrap(format(footerText, this.config.descriptionStyle))],
|
||||
footerText.length && ['', format(footerText, this.config.descriptionStyle)],
|
||||
) + '\n'
|
||||
)
|
||||
}
|
||||
|
||||
@@ -11,7 +11,8 @@ export function _setOrPush<T>(
|
||||
}
|
||||
return newValue as T
|
||||
}
|
||||
type Parseable = string | number | boolean | null | undefined | Record<string, unknown>
|
||||
/** A value that can be stringified using one of the util functions. */
|
||||
export type Parseable = string | number | boolean | null | undefined | Record<string, unknown>
|
||||
|
||||
/** A type that makes all properties of an object required, recursively. */
|
||||
export type DeepRequired<T> = {
|
||||
|
||||
Reference in New Issue
Block a user