Skip to content

Commit 93ac71b

Browse files
committed
Fix build stats formatting
1 parent 491a188 commit 93ac71b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export default async function microbundle(options) {
108108
return await getSizeInfo(bundle._code, outputOptions.file);
109109
}));
110110

111-
return chalk.blue(`Build output to ${relative(cwd, dirname(options.output))}:`) + '\n ' + out.join('\n ');
111+
return chalk.blue(`Build output to ${relative(cwd, dirname(options.output)) || '.'}:`) + '\n ' + out.join('\n ');
112112
}
113113

114114

0 commit comments

Comments
 (0)