Skip to content

Commit 12920f6

Browse files
committed
chore: Fix lint
1 parent 33913ee commit 12920f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/lifecycles/bump.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Bump.getUpdatedConfigs = function () {
7878
* @param {string[]} semverBuild An array of the build metadata elements, to be joined with '.'
7979
* @returns {string}
8080
*/
81-
function semvarToVersionStr(semverVersion, semverBuild) {
81+
function semvarToVersionStr (semverVersion, semverBuild) {
8282
return [semverVersion, semverBuild.join('.')].filter(Boolean).join('+')
8383
}
8484

test/core.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ describe('commit-and-tag-version', function () {
581581

582582
it('should exit with error without a package file to bump', async function () {
583583
mock({ bump: 'patch', pkg: false })
584-
584+
585585
expect(exec({ gitTagFallback: false })).to.be.rejectedWith('no package file found')
586586
})
587587

0 commit comments

Comments
 (0)