Skip to content

Commit

Permalink
fix: Add space to SemVer log message (#5042)
Browse files Browse the repository at this point in the history
Add space to SemVer log message
  • Loading branch information
dnicolson committed Jun 22, 2022
1 parent 61112f7 commit e03009f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspaces/arborist/lib/arborist/build-ideal-tree.js
Expand Up @@ -673,7 +673,7 @@ Try using the package name instead, e.g:
const breakingMessage = isSemVerMajor
? 'a SemVer major change'
: 'outside your stated dependency range'
log.warn('audit', `Updating ${name} to ${version},` +
log.warn('audit', `Updating ${name} to ${version}, ` +
`which is ${breakingMessage}.`)

await this[_add](node, { add: [`${name}@${version}`] })
Expand Down

0 comments on commit e03009f

Please sign in to comment.