Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianGonz97 committed Sep 28, 2024
1 parent e96be15 commit 051a5d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/commands/migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export const migrate = new Command('migrate')
.argument('<migration>', '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 '';
}
})
Expand Down

0 comments on commit 051a5d3

Please sign in to comment.