Files
screeps-deploy-action/renovate.json
Philipp Horstenkamp de6b54abe9
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m38s
feat: use a custom build js step instead of all the dependencies (#53)
Reviewed-on: #53
2025-12-27 19:25:56 +01:00

25 lines
452 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>server/Renovate-Template:renovate.json",
"config:recommended",
":automergeLinters"
],
"packageRules": [
{
"matchManagers": [
"npm"
],
"postUpgradeTasks": {
"commands": [
"npm ci",
"npm run build"
],
"fileFilters": [
"dist/index.js"
]
}
}
]
}