Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Aug 27, 2024
1 parent 6795bfc commit 5617733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/swc-plugins/lib/api/compatRange/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export const compatRangeRouter = router({

if (semver.lt(corePkg.version, previousMaxCoreVersion)) {
console.log(
`Skipping ${corePkg.version} as it's less than ${previousMaxCoreVersion}`
`Skipping ${corePkg.version} as it's less than previous max (${previousMaxCoreVersion})`
);
continue;
}
Expand All @@ -244,7 +244,7 @@ export const compatRangeRouter = router({
}
if (semver.lt(rv, previousMaxPluginRunnerVersion)) {
console.log(
`Skipping ${rv} as it's less than ${previousMaxPluginRunnerVersion}`
`Skipping ${rv} as it's less than previous max (${previousMaxPluginRunnerVersion})`
);
continue;
}
Expand Down

0 comments on commit 5617733

Please sign in to comment.