Skip to content

Commit 37821bf

Browse files
committed
build: dependency management updates
Makes the following changes to our dependency management: 1. Removes `yaml` since we don't use it anywhere. 2. Disables updates for `stylelint` and `selenium-webdriver`, because their latest versions have breaking changes that will take some effort to get around.
1 parent ea700e6 commit 37821bf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@
148148
"tsutils": "^3.21.0",
149149
"typescript": "5.8.3",
150150
"vrsource-tslint-rules": "6.0.0",
151-
"yaml": "^1.10.2",
152151
"yargs": "^17.3.1",
153152
"zx": "^6.2.4"
154153
},

pnpm-lock.yaml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

renovate.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": ["github>angular/dev-infra//renovate-presets/default.json5"],
4-
"packageRules": []
4+
"packageRules": [],
5+
"ignoreDeps": [
6+
"stylelint",
7+
"selenium-webdriver"
8+
]
59
}

0 commit comments

Comments
 (0)