Skip to content

Commit da2c83a

Browse files
committedMar 31, 2023
style: ouptimize output logs.
1 parent 50e5b1a commit da2c83a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/core/src/compile.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function compile(options: CompileOptions = {}) {
3131
];
3232
(options.entry || []).forEach((fileNames) => err.push(` \x1b[35;1m${fileNames}\x1b[0m`));
3333
!options.entry?.length &&
34-
err.push('\x1b[33;1mNo files were indexed. Please check your command line arguments.\x1b[0m');
34+
err.push(' \x1b[33;1mNo files were indexed. Please check your command line arguments.\x1b[0m');
3535
if (process.platform === 'win32') {
3636
err.push('\n Please note that on \x1b[33;1mWindows\x1b[0m platform, double(") quotes should be used to ');
3737
err.push(" index file parameters instead of single(') quotes.\n");

0 commit comments

Comments
 (0)
Please sign in to comment.