clerc 1.0.0-beta.24 → 1.0.0-beta.26
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.
- package/dist/index.d.ts +3 -10
- 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
|
-
|
|
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,
|
|
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,
|
|
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.
|
|
3
|
+
"version": "1.0.0-beta.26",
|
|
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/
|
|
48
|
-
"@clerc/plugin-
|
|
49
|
-
"@clerc/
|
|
50
|
-
"@clerc/plugin-help": "1.0.0-beta.
|
|
51
|
-
"@clerc/plugin-not-found": "1.0.0-beta.
|
|
52
|
-
"@clerc/plugin-
|
|
53
|
-
"@clerc/plugin-
|
|
47
|
+
"@clerc/core": "1.0.0-beta.26",
|
|
48
|
+
"@clerc/plugin-completions": "1.0.0-beta.26",
|
|
49
|
+
"@clerc/plugin-friendly-error": "1.0.0-beta.26",
|
|
50
|
+
"@clerc/plugin-help": "1.0.0-beta.26",
|
|
51
|
+
"@clerc/plugin-not-found": "1.0.0-beta.26",
|
|
52
|
+
"@clerc/plugin-strict-flags": "1.0.0-beta.26",
|
|
53
|
+
"@clerc/plugin-version": "1.0.0-beta.26"
|
|
54
54
|
}
|
|
55
55
|
}
|