Skip to content

Commit

Permalink
chore(deps): skip dependencies that dropped Node 18 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jul 19, 2024
1 parent ad33b08 commit 823012e
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@
dependencyDashboard: false,
pin: false,
rangeStrategy: 'bump',
packageRules: [],
packageRules: [
{
packageNames: ['pnpm'],
allowedVersions: '<9.0.0',
},

// node-glob and rimraf new major releases dropped support for Node 18, we'll have to wait our next major to upgrade them
{
packageNames: ['glob'],
allowedVersions: '<11.0.0',
},
{
packageNames: ['rimraf'],
allowedVersions: '<6.0.0',
},
],
schedule: ['every 2 weeks on Friday'],
}

0 comments on commit 823012e

Please sign in to comment.