@clerc/core 1.0.0-beta.27 → 1.0.0-beta.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -3
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -495,9 +495,13 @@ interface HelpPluginOptions {
495
495
  */
496
496
  examples?: [string, string][];
497
497
  /**
498
- * A banner to show before the help output.
498
+ * Header to show before the help output.
499
499
  */
500
- banner?: string;
500
+ header?: string;
501
+ /**
502
+ * Footer to show after the help output.
503
+ */
504
+ footer?: string;
501
505
  /**
502
506
  * Custom formatters for rendering help.
503
507
  */
@@ -516,7 +520,8 @@ declare const helpPlugin: ({
516
520
  showHelpWhenNoCommandSpecified,
517
521
  notes,
518
522
  examples,
519
- banner,
523
+ header,
524
+ footer,
520
525
  formatters,
521
526
  groups
522
527
  }?: HelpPluginOptions) => Plugin$1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clerc/core",
3
- "version": "1.0.0-beta.27",
3
+ "version": "1.0.0-beta.28",
4
4
  "author": "Ray <i@mk1.io> (https://github.com/so1ve)",
5
5
  "type": "module",
6
6
  "description": "Clerc core",
@@ -45,10 +45,10 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "lite-emit": "^4.0.0",
48
- "@clerc/parser": "^1.0.0-beta.27"
48
+ "@clerc/parser": "^1.0.0-beta.28"
49
49
  },
50
50
  "devDependencies": {
51
51
  "is-platform": "^1.0.0",
52
- "@clerc/utils": "1.0.0-beta.27"
52
+ "@clerc/utils": "1.0.0-beta.28"
53
53
  }
54
54
  }