Skip to content

Commit

Permalink
fix: TypeScript warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dipasqualew committed Mar 12, 2021
1 parent 21b81ed commit c21603b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import consola from 'consola';
* @param command
* @param commandArgs
*/
export const spawn = async (command: string, commandArgs: string[] = [], quiet = false): Promise<number> => {
export const spawn = async (command: string, commandArgs: string[] = []): Promise<number> => {
return new Promise((resolve, reject) => {
const childProcess = childProcessSpawn(command, commandArgs, { stdio: "inherit" });

Expand Down

0 comments on commit c21603b

Please sign in to comment.