Skip to content

Commit

Permalink
Fix publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
rkulinski committed Nov 23, 2023
1 parent 7801531 commit af11fd1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions scripts/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,12 @@ async function run() {
return
}

// if (recommendedReleaseLevel === -1) {
// console.info(
// `There have been no changes since the release of ${latestTag} that require a new version. You're good!`,
// )
// return
// }
if (recommendedReleaseLevel === -1) {
console.info(
`There have been no changes since the release of ${latestTag} that require a new version. You're good!`,
)
return
}
}

function getSorterFn<TItem>(sorters: ((d: TItem) => any)[]) {
Expand Down

0 comments on commit af11fd1

Please sign in to comment.