Skip to content

Commit

Permalink
fix(list): flush output before exiting (#3971)
Browse files Browse the repository at this point in the history
  • Loading branch information
smerrill committed Mar 15, 2024
1 parent 97cffa7 commit 6426da8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/commands/list/src/index.ts
Expand Up @@ -37,6 +37,6 @@ export class ListCommand extends Command {
this.result?.count === 1 ? "package" : "packages"
);

process.exit(0);
process.stdout.end(() => process.exit(0));
}
}

0 comments on commit 6426da8

Please sign in to comment.