@youcan/cli-kit 1.1.0-beta.10 → 1.1.0-beta.13

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.
@@ -13,5 +13,6 @@ export declare const commonFlags: {
13
13
  export declare abstract class Command extends BaseCommand {
14
14
  output: typeof ux;
15
15
  prompt: typeof prompts;
16
+ clear(): void;
16
17
  }
17
18
  export {};
package/dist/node/cli.js CHANGED
@@ -56,6 +56,9 @@ const commonFlags = {
56
56
  class Command extends Command$1 {
57
57
  output = ux;
58
58
  prompt = prompts;
59
+ clear() {
60
+ console.clear();
61
+ }
59
62
  }
60
63
 
61
64
  export { Command, commonFlags, exec, execCreate };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@youcan/cli-kit",
3
3
  "type": "module",
4
- "version": "1.1.0-beta.10",
4
+ "version": "1.1.0-beta.13",
5
5
  "description": "Utilities for the YouCan CLI",
6
6
  "author": "YouCan <contact@youcan.shop> (https://youcan.shop)",
7
7
  "license": "MIT",