Skip to content

Commit 40fa310

Browse files
authored
Style nits
1 parent 2e208c9 commit 40fa310

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

packages/react-scripts/scripts/eject.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,18 @@ prompt(
100100
Object.keys(appPackage.scripts).forEach(function (key) {
101101
appPackage.scripts[key] = appPackage.scripts[key]
102102
.replace(/react-scripts (\w+)/g, 'node scripts/$1.js');
103-
console.log(' Replacing ' + cyan('\"react-scripts ' + key + '\"') + ' with ' + cyan('\"' + appPackage.scripts[key]+'\"'));
103+
console.log(
104+
' Replacing ' +
105+
cyan('\"react-scripts ' + key + '\"') +
106+
' with ' +
107+
cyan('\"' + appPackage.scripts[key] + '\"')
108+
);
104109
});
105110

106111
console.log();
107112
console.log(cyan('Adding configuration to ') + 'package.json' + cyan('...'));
108113
// Add Jest config
109-
console.log(' Adding ' + cyan('Jest') + ' configuration')
114+
console.log(' Adding ' + cyan('Jest') + ' configuration');
110115
appPackage.jest = createJestConfig(
111116
filePath => path.join('<rootDir>', filePath),
112117
null,

0 commit comments

Comments
 (0)