@@ -18,38 +18,22 @@ const postInstall: PostInstallFn = ({ name, dir, pm }) => {
18
18
console . log (
19
19
`${ chalk . green . bold ( "Success!" ) } Created ${ chalk . greenBright . bold (
20
20
name ,
21
- ) } at ${ chalk . bold ( dir ) } `,
21
+ ) } at ${ chalk . bold ( dir ) } 🚀 `,
22
22
) ;
23
23
console . log ( "" ) ;
24
- console . log ( "You can run several commands:" ) ;
25
- console . log ( "" ) ;
26
24
25
+ console . log ( "Start developing by:\n" ) ;
26
+ console . log ( `${ indent ( ) } \u203a ${ chalk . greenBright ( "cd" ) } ${ dir } ` ) ;
27
27
console . log (
28
- `${ indent ( ) } ${ chalk . blueBright (
28
+ `${ indent ( ) } \u203a ${ chalk . greenBright (
29
29
pm === "yarn" || pm === "pnpm" ? `${ pm } dev` : "npm run dev" ,
30
30
) } `,
31
31
) ;
32
- console . log ( `${ indent ( 2 ) } Starts the development server.` ) ;
33
- console . log ( "" ) ;
34
- console . log (
35
- `${ indent ( ) } ${ chalk . blueBright (
36
- pm === "yarn" || pm === "pnpm" ? `${ pm } build` : "npm run build" ,
37
- ) } `,
38
- ) ;
39
- console . log ( `${ indent ( 2 ) } Bundles the app for production.` ) ;
40
32
console . log ( "" ) ;
33
+
41
34
console . log (
42
- `${ indent ( ) } ${ chalk . blueBright (
43
- pm === "yarn" || pm === "pnpm" ? `${ pm } start` : "npm run start" ,
44
- ) } `,
45
- ) ;
46
- console . log ( `${ indent ( 2 ) } Starts the production server.` ) ;
47
- console . log ( "" ) ;
48
- console . log ( "Start developing by typing:\n" ) ;
49
- console . log ( `${ indent ( ) } ${ chalk . blueBright ( "cd" ) } ${ name } ` ) ;
50
- console . log (
51
- `${ indent ( ) } ${ chalk . blueBright (
52
- pm === "yarn" || pm === "pnpm" ? `${ pm } dev` : "npm run dev" ,
35
+ `${ indent ( ) } \u203a Join us at ${ chalk . cyanBright (
36
+ "https://discord.gg/refine" ,
53
37
) } `,
54
38
) ;
55
39
console . log ( "" ) ;
0 commit comments