@@ -24,7 +24,8 @@ module.exports = {
2424 let name = stringUtil . dasherize ( rawName ) ;
2525 let namespace = stringUtil . classify ( rawName ) ;
2626
27- let hasOptions = ! options . welcome || options . packageManager || options . ciProvider ;
27+ let hasOptions =
28+ ! options . welcome || options . packageManager || options . ciProvider ;
2829 let blueprintOptions = '' ;
2930 if ( hasOptions ) {
3031 let indent = `\n ` ;
@@ -66,7 +67,8 @@ module.exports = {
6667 blueprintVersion : require ( './package' ) . version ,
6768 yarn : options . packageManager === 'yarn' ,
6869 pnpm : options . packageManager === 'pnpm' ,
69- npm : options . packageManager !== 'yarn' && options . packageManager !== 'pnpm' ,
70+ npm :
71+ options . packageManager !== 'yarn' && options . packageManager !== 'pnpm' ,
7072 invokeScriptPrefix,
7173 execBinPrefix,
7274 welcome : options . welcome ,
@@ -93,7 +95,9 @@ module.exports = {
9395
9496 if ( ! options . typescript ) {
9597 files = files . filter (
96- ( file ) => ! [ 'tsconfig.json' , 'app/config/' , 'types/' ] . includes ( file ) && ! file . endsWith ( '.d.ts' )
98+ ( file ) =>
99+ ! [ 'tsconfig.json' , 'app/config/' , 'types/' ] . includes ( file ) &&
100+ ! file . endsWith ( '.d.ts' ) ,
97101 ) ;
98102 }
99103
@@ -110,7 +114,12 @@ module.exports = {
110114 beforeInstall ( ) {
111115 const prependEmoji = require ( './lib/prepend-emoji' ) ;
112116
113- this . ui . writeLine ( prependEmoji ( '✨' , `Creating a new Ember app in ${ chalk . yellow ( process . cwd ( ) ) } :` ) ) ;
117+ this . ui . writeLine (
118+ prependEmoji (
119+ '✨' ,
120+ `Creating a new Ember app in ${ chalk . yellow ( process . cwd ( ) ) } :` ,
121+ ) ,
122+ ) ;
114123 } ,
115124
116125 /**
0 commit comments