diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 000000000..51be27f86 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:base", "helpers:pinGitHubActionDigests", ":semanticCommitTypeAll(bump)"], + "dependencyDashboard": true, + "dependencyDashboardAutoclose": false, + "major": { + "dependencyDashboardApproval": false + }, + "rangeStrategy": "bump", + "packageRules": [ + { + "matchPackageNames": ["node", "npm", "pnpm", "yarn", "typescript", "@types/node"], + "groupName": "engines", + "enabled": false + }, + { + "matchPackagePatterns": ["^@contentedjs/"], + "groupName": "@contentedjs" + } + ] +} diff --git a/turbo.json b/turbo.json index 5eca4bfac..f92a3ebed 100644 --- a/turbo.json +++ b/turbo.json @@ -5,7 +5,7 @@ "cache": false }, "build": { - "inputs": ["tsconfig.json", "contented.config.mjs", "src/**", "frontmatter/**"], + "inputs": ["contented.config.mjs", "src/**", "frontmatter/**"], "outputs": ["dist/**"], "dependsOn": ["^build"] },