File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
packages/create-mcp-kit/src Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' create-mcp-kit ' : patch
3+ ---
4+
5+ feat: remove spinner and improve outro formatting
Original file line number Diff line number Diff line change @@ -114,8 +114,6 @@ if (await fileExists(targetPath)) {
114114}
115115
116116{
117- const createSpinner = clack . spinner ( )
118- createSpinner . start ( 'Creating project...' )
119117 await sleep ( 100 )
120118 try {
121119 await createProject ( targetPath , templatePath , {
@@ -126,11 +124,9 @@ if (await fileExists(targetPath)) {
126124 components : [ ] ,
127125 } )
128126 } catch ( error ) {
129- createSpinner . stop ( 'Failed to create project' )
130127 clack . log . error ( ( error as Error ) . message )
131128 process . exit ( 1 )
132129 }
133- createSpinner . stop ( pc . green ( 'Project created!' ) )
134130}
135131
136132if ( group . install ) {
@@ -140,12 +136,10 @@ if (group.install) {
140136 spinner . stop ( pc . green ( 'Dependencies installed!' ) )
141137}
142138
143- clack . outro ( `
144- ${ pc . green ( '✓' ) } Project created successfully!
139+ clack . outro ( `${ pc . green ( '✓' ) } Project created successfully!
145140
146141${ pc . cyan ( 'Next steps:' ) }
147142 ${ pc . dim ( 'cd' ) } ${ group . name }
148143 ${ group . install ? '' : `${ pc . dim ( 'npm install' ) } \n ` } ${ pc . dim ( 'npm run dev' ) }
149144
150- Enjoy coding! 🎉
151- ` )
145+ Enjoy coding! 🎉` )
You can’t perform that action at this time.
0 commit comments