@@ -124,7 +124,7 @@ module.exports = class Creator extends EventEmitter {
124
124
const pm = new PackageManager ( { context, forcePackageManager : packageManager } )
125
125
126
126
await clearConsole ( )
127
- log ( `✨` , ` Creating project in ${ chalk . yellow ( context ) } .`)
127
+ log ( `✨ Creating project in ${ chalk . yellow ( context ) } .` )
128
128
this . emit ( 'creation' , { event : 'creating' } )
129
129
130
130
// get latest CLI plugin version
@@ -162,7 +162,7 @@ module.exports = class Creator extends EventEmitter {
162
162
// so that vue-cli-service can setup git hooks.
163
163
const shouldInitGit = this . shouldInitGit ( cliOptions )
164
164
if ( shouldInitGit ) {
165
- log ( `🗃` , ` Initializing git repository...`)
165
+ log ( `🗃 Initializing git repository...` )
166
166
this . emit ( 'creation' , { event : 'git-init' } )
167
167
await run ( 'git init' )
168
168
}
@@ -202,7 +202,7 @@ module.exports = class Creator extends EventEmitter {
202
202
}
203
203
204
204
// run complete cbs if any (injected by generators)
205
- log ( '⚓' , ` Running completion hooks...`)
205
+ log ( `⚓ Running completion hooks...`)
206
206
this . emit ( 'creation' , { event : 'completion-hooks' } )
207
207
for ( const cb of afterInvokeCbs ) {
208
208
await cb ( )
@@ -214,7 +214,7 @@ module.exports = class Creator extends EventEmitter {
214
214
if ( ! generator . files [ 'README.md' ] ) {
215
215
// generate README.md
216
216
log ( )
217
- log ( '📄' , ' Generating README.md...')
217
+ log ( '📄 Generating README.md...' )
218
218
await writeFileTree ( context , {
219
219
'README.md' : generateReadme ( generator . pkg , packageManager )
220
220
} )
0 commit comments