Skip to content

Commit 719b9ce

Browse files
author
tosaken1116
committed
chore: revert log
1 parent 5a60593 commit 719b9ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

helper/log.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ export const log = (message: string, delay = 100) => {
4747
let x = 0;
4848

4949
const interval = setInterval(function () {
50-
// process.stdout.write("\x1Bc" + blue(chars[x++]));
51-
// process.stdout.write(`\x1b[3;4H`);
50+
process.stdout.write("\x1Bc" + blue(chars[x++]));
51+
process.stdout.write(`\x1b[3;4H`);
5252
process.stdout.write(message);
5353

5454
x = x % chars.length;

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ async function main() {
560560
isSrcDir: options.srcDir,
561561
workflows: options.workflows,
562562
});
563-
// process.stdout.write("\x1Bc");
563+
process.stdout.write("\x1Bc");
564564
console.log(green("Done!"));
565565
console.log(`create Next.js app ${blue(projectName)}`);
566566
console.log(`cd ${blue(projectName)}`);

0 commit comments

Comments
 (0)