Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Sep 11, 2024
1 parent e9b7d06 commit e73df9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import conventionalRecommendedBump from 'conventional-recommended-bump';
import conventionalChangelog from 'conventional-changelog';
import semver from 'semver';
import concat from 'concat-stream';
import gitSemverTags from 'git-semver-tags';
import { getSemverTags } from 'git-semver-tags';

class ConventionalChangelog extends Plugin {
static disablePlugin(options) {
Expand Down Expand Up @@ -51,7 +51,7 @@ class ConventionalChangelog extends Plugin {
return semver.inc(latestVersion, `pre${releaseType}`, preReleaseId);
}

const tags = await gitSemverTags({
const tags = await getSemverTags({
lernaTags: !!options.lernaPackage,
package: options.lernaPackage,
tagPrefix: options.tagPrefix,
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
"concat-stream": "^2.0.0",
"conventional-changelog": "^5.1.0",
"conventional-recommended-bump": "^9.0.0",
"git-semver-tags": "^7.0.1",
"git-semver-tags": "^8.0.0",
"semver": "^7.6.3"
},
"devDependencies": {
"bron": "^2.0.3",
"installed-check": "^9.3.0",
"release-it": "^17.6.0",
"shelljs": "^0.8.5",
"sinon": "^18.0.0",
"sinon": "^18.0.1",
"tmp": "^0.2.3"
},
"peerDependencies": {
Expand Down

0 comments on commit e73df9b

Please sign in to comment.