Update npm package rules in renovate.json to use 'npm ci --ignore-scripts' for post-update and post-upgrade tasks
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m21s

This commit is contained in:
2025-12-21 12:09:55 +01:00
parent 1d6dfff40a
commit 0682577e81

View File

@@ -11,8 +11,16 @@
"npm" "npm"
], ],
"postUpdateOptions": [ "postUpdateOptions": [
"npmInstall" "npm ci --ignore-scripts"
] ],
"postUpgradeTasks": {
"commands": [
"npm ci --ignore-scripts"
],
"fileFilters": [
"node_modules/**/*"
]
}
} }
] ]
} }