Skip to content

Commit

Permalink
test(cli): remove unnecessary generics usage (#9859)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-itsheng committed Aug 28, 2022
1 parent ec9ce4a commit 45d6797
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/create-vite/__tests__/cli.spec.ts
Expand Up @@ -11,8 +11,8 @@ const genPath = join(__dirname, projectName)

const run = (
args: string[],
options: SyncOptions<string> = {}
): ExecaSyncReturnValue<string> => {
options: SyncOptions = {}
): ExecaSyncReturnValue => {
return execaCommandSync(`node ${CLI_PATH} ${args.join(' ')}`, options)
}

Expand Down

0 comments on commit 45d6797

Please sign in to comment.