From 9e695a0ba2fd9e0bbd7697903615f0471d921b44 Mon Sep 17 00:00:00 2001 From: Gajus Kuizinas Date: Mon, 20 Mar 2023 15:21:11 -0600 Subject: [PATCH] fix: correct default script name --- src/bin/turbowatch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/turbowatch.ts b/src/bin/turbowatch.ts index e795823..2b787ea 100644 --- a/src/bin/turbowatch.ts +++ b/src/bin/turbowatch.ts @@ -43,7 +43,7 @@ const main = async () => { .command('$0 [scripts...]', 'Start Turbowatch', (commandYargs) => { commandYargs.positional('scripts', { array: true, - default: 'turbowatch.ts', + default: ['turbowatch.ts'], describe: 'Script with Turbowatch instructions.', type: 'string', });