We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 50e5b1a commit da2c83aCopy full SHA for da2c83a
packages/core/src/compile.ts
@@ -31,7 +31,7 @@ export async function compile(options: CompileOptions = {}) {
31
];
32
(options.entry || []).forEach((fileNames) => err.push(` \x1b[35;1m${fileNames}\x1b[0m`));
33
!options.entry?.length &&
34
- err.push('\x1b[33;1mNo files were indexed. Please check your command line arguments.\x1b[0m');
+ err.push(' \x1b[33;1mNo files were indexed. Please check your command line arguments.\x1b[0m');
35
if (process.platform === 'win32') {
36
err.push('\n Please note that on \x1b[33;1mWindows\x1b[0m platform, double(") quotes should be used to ');
37
err.push(" index file parameters instead of single(') quotes.\n");
0 commit comments