clerc 1.0.0-beta.24 → 1.0.0-beta.25

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 +3 -10
  2. package/package.json +8 -8
package/dist/index.d.ts CHANGED
@@ -18,14 +18,7 @@ declare module "@clerc/core" {
18
18
  };
19
19
  }
20
20
  }
21
- interface CompletionsPluginOptions {
22
- /**
23
- * Whether to register the `completions install` and `completions uninstall` commands.
24
- * @default true
25
- */
26
- managementCommands?: boolean;
27
- }
28
- declare const completionsPlugin: (options?: CompletionsPluginOptions) => Plugin;
21
+ declare const completionsPlugin: () => Plugin;
29
22
  //#endregion
30
23
  //#region ../plugin-friendly-error/src/index.d.ts
31
24
  interface FriendlyErrorPluginOptions {
@@ -211,8 +204,8 @@ declare const versionPlugin: ({
211
204
  flag
212
205
  }?: VersionPluginOptions) => Plugin;
213
206
  declare namespace index_d_exports {
214
- export { Cli, CommandHelpOptions, CompletionsPluginOptions, FriendlyErrorPluginOptions, GroupDefinition, GroupsOptions, HelpOptions, HelpPluginOptions, completionsPlugin, defaultFormatters, friendlyErrorPlugin, helpPlugin, notFoundPlugin, strictFlagsPlugin, versionPlugin };
207
+ export { Cli, CommandHelpOptions, FriendlyErrorPluginOptions, GroupDefinition, GroupsOptions, HelpOptions, HelpPluginOptions, completionsPlugin, defaultFormatters, friendlyErrorPlugin, helpPlugin, notFoundPlugin, strictFlagsPlugin, versionPlugin };
215
208
  }
216
209
  declare const Cli: (options?: CreateOptions) => Clerc;
217
210
  //#endregion
218
- export { Cli, CommandHelpOptions, CompletionsPluginOptions, FriendlyErrorPluginOptions, type GroupDefinition, type GroupsOptions, HelpOptions, HelpPluginOptions, completionsPlugin, defaultFormatters, friendlyErrorPlugin, helpPlugin, notFoundPlugin, strictFlagsPlugin, versionPlugin };
211
+ export { Cli, CommandHelpOptions, FriendlyErrorPluginOptions, type GroupDefinition, type GroupsOptions, HelpOptions, HelpPluginOptions, completionsPlugin, defaultFormatters, friendlyErrorPlugin, helpPlugin, notFoundPlugin, strictFlagsPlugin, versionPlugin };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clerc",
3
- "version": "1.0.0-beta.24",
3
+ "version": "1.0.0-beta.25",
4
4
  "author": "Ray <i@mk1.io> (https://github.com/so1ve)",
5
5
  "type": "module",
6
6
  "description": "Clerc: The full-featured cli library.",
@@ -44,12 +44,12 @@
44
44
  "access": "public"
45
45
  },
46
46
  "dependencies": {
47
- "@clerc/plugin-completions": "1.0.0-beta.24",
48
- "@clerc/plugin-friendly-error": "1.0.0-beta.24",
49
- "@clerc/core": "1.0.0-beta.24",
50
- "@clerc/plugin-help": "1.0.0-beta.24",
51
- "@clerc/plugin-not-found": "1.0.0-beta.24",
52
- "@clerc/plugin-version": "1.0.0-beta.24",
53
- "@clerc/plugin-strict-flags": "1.0.0-beta.24"
47
+ "@clerc/core": "1.0.0-beta.25",
48
+ "@clerc/plugin-friendly-error": "1.0.0-beta.25",
49
+ "@clerc/plugin-not-found": "1.0.0-beta.25",
50
+ "@clerc/plugin-strict-flags": "1.0.0-beta.25",
51
+ "@clerc/plugin-completions": "1.0.0-beta.25",
52
+ "@clerc/plugin-version": "1.0.0-beta.25",
53
+ "@clerc/plugin-help": "1.0.0-beta.25"
54
54
  }
55
55
  }