Skip to content

Commit 308a21e

Browse files
committed
make quotes cyan in "Replacing script" console output
1 parent 52c432f commit 308a21e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-scripts/scripts/eject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ 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(' Replacing ' + cyan('\"react-scripts ' + key + '\"') + ' with ' + cyan('\"' + appPackage.scripts[key]+'\"'));
104104
});
105105

106106
console.log();

0 commit comments

Comments
 (0)