Files
truecharts/.github/renovate/kinds/npm.json5
T
2025-11-27 12:05:28 +01:00

15 lines
532 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"npm": {
"fileMatch": [
"^astro\\.config\\.(mjs|js|ts)$", // Only matches astro.config.* in the root
"^package\\.json$", // Only matches package.json in the root
"^package-lock\\.json$" // Only matches package-lock.json in the root
],
"branchPrefix": "renovate/npm-",
"enabled": true,
"updateTypes": ["major", "minor", "patch", "digest", "pin", "lockfile"],
"semanticCommitScope": "npm"
}
}