Skip to content

Commit b66aa9a

Browse files
committed
fix: Move CLI logger start before start
1 parent c59bb91 commit b66aa9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const cli = async () => {
2222

2323
try {
2424
const { loadedConfig, loadedConfigPath } = await loadConfig(configPath);
25-
const results = await run(await buildOptions(input, loadedConfig));
2625
logger.start(loadedConfigPath);
26+
const results = await run(await buildOptions(input, loadedConfig));
2727
logger.results(results);
2828
} catch (error) {
2929
logger.error(error);

0 commit comments

Comments
 (0)