Skip to content

Commit 2731f78

Browse files
committedAug 31, 2021
chore: Modify the output log.
1 parent c77f727 commit 2731f78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/compile.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default async function compile(dir: string, option: ICompileOtion) {
3030
await fs.outputFile(outputCssFile, cssStr.join(''));
3131
await log(outputCssFile);
3232
} else {
33-
console.log(`🚧'\x1b[35m${projectName}\x1b[0m =>\x1b[33m No content is output.\x1b[0m`);
33+
console.log(`🚧 \x1b[35m${projectName}\x1b[0m =>\x1b[33m No content is output.\x1b[0m`);
3434
}
3535
} else {
3636
const outputDir = path.join(process.cwd(), out);

0 commit comments

Comments
 (0)
Please sign in to comment.