From b942d823f44cac4351ffecdfee031f8d40d3942f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 21:17:19 +0800 Subject: [PATCH] Configure Renovate (#52) * Add renovate.json * chore: update renovate.json * chore: update renovate.json * chore: update renovate.json * chore: update renovate.json * chore: update renovate.json --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: NekoCharm <34984380+AlPha5130@users.noreply.github.com> --- renovate.json | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..31a4c45f --- /dev/null +++ b/renovate.json @@ -0,0 +1,72 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ], + "labels": ["dependencies"], + "baseBranches": [ + "dev" + ], + "packageRules": [ + { + "groupName": "framework", + "matchPackageNames": [ + "vue", + "vue-i18n", + "vue-router", + "axios", + "pinia", + "@vercel/node" + ] + }, + { + "groupName": "ui", + "matchPackageNames": [ + "naive-ui", + "vue-flex-waterfall", + "vue-gtag", + "nprogress" + ], + "matchPackagePrefixes": [ + "@iconify" + ] + }, + { + "groupName": "build", + "matchPackageNames": [ + "typescript", + "vite", + "pug", + "sass", + "tslib", + "vercel", + "@vue/language-plugin-pug" + ], + "matchPackagePrefixes": [ + "@vitejs", + "unplugin", + "@vueuse" + ] + }, + { + "groupName": "types", + "matchPackagePrefixes": [ + "@types" + ] + }, + { + "groupName": "utils", + "matchPackageNames": [ + "picocolors", + "js-cookie", + "cookie", + "cheerio", + "conventional-changelog-cli" + ], + "matchPackagePrefixes": [ + "lodash", + "date" + ] + } + ] +}