@junobuild/cli-tools 0.0.8 → 0.0.9

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.
@@ -1,8 +1,8 @@
1
1
  export declare const hasArgs: ({ args, options }: {
2
- args?: string[] | undefined;
2
+ args?: string[];
3
3
  options: string[];
4
4
  }) => boolean;
5
5
  export declare const nextArg: ({ args, option }: {
6
- args?: string[] | undefined;
6
+ args?: string[];
7
7
  option: string;
8
8
  }) => string | undefined;
@@ -1,12 +1,12 @@
1
1
  export declare const spawn: ({ command, cwd, args, stdout, silentOut, silentErrors }: {
2
2
  command: string;
3
- cwd?: string | undefined;
4
- args?: readonly string[] | undefined;
5
- stdout?: ((output: string) => void) | undefined;
6
- silentOut?: boolean | undefined;
7
- silentErrors?: boolean | undefined;
3
+ cwd?: string;
4
+ args?: readonly string[];
5
+ stdout?: (output: string) => void;
6
+ silentOut?: boolean;
7
+ silentErrors?: boolean;
8
8
  }) => Promise<number | null>;
9
9
  export declare const execute: ({ command, args }: {
10
10
  command: string;
11
- args?: readonly string[] | undefined;
11
+ args?: readonly string[];
12
12
  }) => Promise<number | null>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/cli-tools",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "A collection of tools for Juno CLIs and Plugins.",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",