diff --git a/packages/cli/commands/migrate.ts b/packages/cli/commands/migrate.ts index 0b5f3264..81a7c030 100644 --- a/packages/cli/commands/migrate.ts +++ b/packages/cli/commands/migrate.ts @@ -9,7 +9,8 @@ export const migrate = new Command('migrate') .argument('', 'migration to run') .configureHelp({ formatHelp() { - execSync('npx svelte-migrate@latest --help', { stdio: 'inherit', encoding: 'utf8' }); + // we'll pass the responsibility of presenting the help menu over to `svelte-migrate` + execSync('npx svelte-migrate@latest --help', { stdio: 'inherit' }); return ''; } })