File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ export const log = (message: string, delay = 100) => {
47
47
let x = 0 ;
48
48
49
49
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` ) ;
52
52
process . stdout . write ( message ) ;
53
53
54
54
x = x % chars . length ;
Original file line number Diff line number Diff line change @@ -560,7 +560,7 @@ async function main() {
560
560
isSrcDir : options . srcDir ,
561
561
workflows : options . workflows ,
562
562
} ) ;
563
- // process.stdout.write("\x1Bc");
563
+ process . stdout . write ( "\x1Bc" ) ;
564
564
console . log ( green ( "Done!" ) ) ;
565
565
console . log ( `create Next.js app ${ blue ( projectName ) } ` ) ;
566
566
console . log ( `cd ${ blue ( projectName ) } ` ) ;
You can’t perform that action at this time.
0 commit comments