Skip to content

Commit

Permalink
fix(): sync dep versions in babel config
Browse files Browse the repository at this point in the history
  • Loading branch information
weareoutman committed Jan 10, 2025
1 parent 0f84de8 commit 60fd414
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/babel-preset-next/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ module.exports = () => {
: env === "commonjs"
? {
targets: {
// Fallback to versions that doesn't support nullish coalescing
node: "12",
node: "14",
},
}
: {
modules: false,
useBuiltIns: "entry",
corejs: {
version: "3.37",
version: "3.38",
},
},
],
Expand All @@ -50,7 +49,7 @@ module.exports = () => {
transformRuntime,
{
// https://github.com/babel/babel/issues/9454#issuecomment-460425922
version: "7.24.5",
version: "7.25.6",
},
],
],
Expand Down

0 comments on commit 60fd414

Please sign in to comment.