Skip to content

Commit 9ac99ce

Browse files
committed
Change browsers output to be a single line
1 parent e2dc3fc commit 9ac99ce

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

packages/react-dev-utils/browsersHelper.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,11 @@ function checkBrowsers(dir, retry = true) {
5959

6060
browserslist.clearCaches();
6161
console.log();
62-
console.log(chalk.green('Set target browsers:'));
63-
console.log();
64-
console.log(`\t${chalk.cyan(defaultBrowsers.join(', '))}`);
62+
console.log(
63+
`${chalk.green('Set target browsers:')} ${chalk.cyan(
64+
defaultBrowsers.join(', ')
65+
)}`
66+
);
6567
console.log();
6668
})
6769
// Swallow any error

0 commit comments

Comments
 (0)