Skip to content

Commit

Permalink
Fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Sep 21, 2023
1 parent def7b9f commit 89190f8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cli.js
Expand Up @@ -38,9 +38,12 @@ if (isArg('--help') || isArg('-h')) {
} else if (isArg('--version') || isArg('-v')) {
process.stdout.write('browserslist ' + pkg.version + '\n')
} else if (isArg('--update-db')) {
process.stdout.write('The --update-db command is deprecated. Please use npx update-browserslist-db@latest instead.\n')

This comment has been minimized.

Copy link
@israelkazakov86

israelkazakov86 Sep 22, 2023

process.stdout.write('The --update-db command is deprecated. Please use npx update-browserslist-db@latest instead.\n')

/* c8 ignore next 8 */

This comment has been minimized.

Copy link
@israelkazakov86

israelkazakov86 Sep 22, 2023

process.stdout.write('The --update-db command is deprecated. Please use npx update-browserslist-db@latest instead.\n')

process.stdout.write(
'The --update-db command is deprecated.\n' +
'Please use npx update-browserslist-db@latest instead.\n'
)
process.stdout.write('Browserslist DB update will still be made.\n')
/* c8 ignore next 3 */
updateDb(function (str) {
process.stdout.write(str)
})
Expand Down

0 comments on commit 89190f8

Please sign in to comment.