angular/renovate.json
Andrew Scott 2ff718869f refactor(vscode-extension): Remove pre-19 integration project
This updates the pre-v19 integration test to use the regular integration
project but pass a specific version and update file contents as
necessary to excersise the code path that uses the default standalone
value. This allows us to remove the old project from the workspace,
allowing the language service to use more recent versions when working
with the adev project, for example.
2026-01-05 17:01:49 -05:00

54 lines
1.5 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>angular/dev-infra//renovate-presets/default.json5"],
"baseBranchPatterns": ["main", "21.0.x"],
"ignoreDeps": [
"@types/selenium-webdriver",
"angular-1.5",
"angular-1.6",
"angular-1.7",
"angular-1.8",
"angular-mocks-1.5",
"angular-mocks-1.6",
"angular-mocks-1.7",
"angular-mocks-1.8",
"convert-source-map",
"selenium-webdriver",
"systemjs",
"vscode-jsonrpc",
"vscode-languageclient",
"vscode-languageserver",
"vscode-languageserver-protocol"
],
"packageRules": [
{
"matchFileNames": ["modules/ssr-benchmarks/package.json"],
"enabled": false
},
{
"matchManagers": ["bazel", "bazel-module", "bazelisk", "npm"],
"postUpgradeTasks": {
"commands": [
"git restore .npmrc",
"pnpm install --frozen-lockfile",
"pnpm bazel mod deps --lockfile_mode=update",
"pnpm bazel run //.github/actions/deploy-docs-site:main",
"pnpm bazel run //packages/common:base_currencies_file",
"pnpm bazel run //packages/common/locales:closure_locale_file",
"pnpm bazel run //packages/core:base_locale_file"
],
"fileFilters": [
".github/actions/deploy-docs-site/**/*",
"packages/**/*",
"MODULE.bazel.lock"
],
"executionMode": "branch"
}
},
{
"enabled": false,
"matchDepNames": ["tailwindcss"],
"matchUpdateTypes": ["major"]
}
]
}