Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
chore: introduce renovate config
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Jan 9, 2024
1 parent cde4006 commit e36da53
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'config:recommended',
':dependencyDashboard',
':dependencyDashboardApproval',
],
packageRules: [
{
allowedVersions: '<19',
groupName: 'Node.js',
matchPackageNames: ['@types/node', 'node'],
},
{
allowedVersions: "<3",

Check failure on line 15 in .github/renovate.json5

View workflow job for this annotation

GitHub Actions / ci

Replace `"<3"` with `'<3'`
matchPackageNames: ['vue']

Check failure on line 16 in .github/renovate.json5

View workflow job for this annotation

GitHub Actions / ci

Insert `,`
},
{
allowedVersions: "<4",

Check failure on line 19 in .github/renovate.json5

View workflow job for this annotation

GitHub Actions / ci

Replace `"<4"` with `'<4'`
matchPackageNames: ["vue-router"]

Check failure on line 20 in .github/renovate.json5

View workflow job for this annotation

GitHub Actions / ci

Replace `"vue-router"]` with `'vue-router'],`
},
{
allowedVersions: "<2",

Check failure on line 23 in .github/renovate.json5

View workflow job for this annotation

GitHub Actions / ci

Replace `"<2"` with `'<2'`
matchPackageNames: ['@vue/test-utils']

Check failure on line 24 in .github/renovate.json5

View workflow job for this annotation

GitHub Actions / ci

Insert `,`
}

Check failure on line 25 in .github/renovate.json5

View workflow job for this annotation

GitHub Actions / ci

Insert `,`
],
}

Check failure on line 27 in .github/renovate.json5

View workflow job for this annotation

GitHub Actions / ci

Insert `⏎`

0 comments on commit e36da53

Please sign in to comment.