Skip to content

Commit 423dd1a

Browse files
committed
Remove template string
1 parent ed11c7a commit 423dd1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/create-react-app/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ function run(root, appName, version, verbose, originalDirectory, template) {
173173
var allDependencies = ['react', 'react-dom', packageToInstall];
174174

175175
console.log('Installing packages. This might take a couple minutes.');
176-
console.log('Installing ' + chalk.cyan(`react, react-dom, ${packageName}`) + '...');
176+
console.log('Installing ' + chalk.cyan('react, react-dom, ' + packageName) + '...');
177177
console.log();
178178

179179
install(allDependencies, verbose, function(code, command, args) {

0 commit comments

Comments
 (0)