Skip to content

Commit

Permalink
build: update yarn to v4.2.2 (#2059)
Browse files Browse the repository at this point in the history
Closes #2041 as a pr takeover

PR Close #2059
  • Loading branch information
angular-robot authored and josephperrott committed May 13, 2024
1 parent a533cd4 commit 05282ca
Show file tree
Hide file tree
Showing 8 changed files with 308 additions and 307 deletions.
2 changes: 1 addition & 1 deletion .github/ng-renovate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-renovate",
"packageManager": "yarn@4.1.1",
"packageManager": "yarn@4.2.2",
"type": "commonjs",
"dependencies": {
"renovate": "37.334.4"
Expand Down
593 changes: 297 additions & 296 deletions .yarn/releases/yarn-4.1.1.cjs → .yarn/releases/yarn-4.2.2.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
yarnPath: .yarn/releases/yarn-4.1.1.cjs
yarnPath: .yarn/releases/yarn-4.2.2.cjs
nodeLinker: node-modules
4 changes: 2 additions & 2 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ ts_config(

nodejs_binary(
name = "yarn_berry_vendored",
data = [".yarn/releases/yarn-4.1.1.cjs"],
entry_point = ".yarn/releases/yarn-4.1.1.cjs",
data = [".yarn/releases/yarn-4.2.2.cjs"],
entry_point = ".yarn/releases/yarn-4.2.2.cjs",
visibility = ["//bazel/integration/tests:__subpackages__"],
)

Expand Down
8 changes: 4 additions & 4 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ yarn_install(
# Yarn Berry/v2+ expects `--immutable` instead of `--frozen-lockfile`.
args = ["--immutable"],
data = [
"//:.yarn/releases/yarn-4.1.1.cjs",
"//:.yarn/releases/yarn-4.2.2.cjs",
"//:.yarnrc.yml",
],
# Currently disabled due to:
Expand All @@ -61,20 +61,20 @@ yarn_install(
# We prefer to symlink the `node_modules` to only maintain a single install.
# See https://github.com/angular/dev-infra/pull/446#issuecomment-1059820287 for details.
symlink_node_modules = True,
yarn = "//:.yarn/releases/yarn-4.1.1.cjs",
yarn = "//:.yarn/releases/yarn-4.2.2.cjs",
yarn_lock = "//:yarn.lock",
)

yarn_install(
name = "ts_proto_npm",
args = ["--immutable"],
data = [
"//:.yarn/releases/yarn-4.1.1.cjs",
"//:.yarn/releases/yarn-4.2.2.cjs",
"//tools/ts_proto:.yarnrc.yml",
],
exports_directories_only = False,
package_json = "//tools/ts_proto:package.json",
yarn = "//:.yarn/releases/yarn-4.1.1.cjs",
yarn = "//:.yarn/releases/yarn-4.2.2.cjs",
yarn_lock = "//tools/ts_proto:yarn.lock",
)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"default": "./*"
}
},
"packageManager": "yarn@4.1.1",
"packageManager": "yarn@4.2.2",
"dependencies": {
"@angular/benchpress": "0.3.0",
"@angular/build": "18.0.0-rc.2",
Expand Down
2 changes: 1 addition & 1 deletion tools/ts_proto/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
yarnPath: ../../.yarn/releases/yarn-4.1.1.cjs
yarnPath: ../../.yarn/releases/yarn-4.2.2.cjs
nodeLinker: node-modules
2 changes: 1 addition & 1 deletion tools/ts_proto/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ts_proto",
"private": true,
"packageManager": "yarn@4.1.1",
"packageManager": "yarn@4.2.2",
"dependencies": {
"protobufjs": "7.2.6",
"protobufjs-cli": "1.1.2"
Expand Down

0 comments on commit 05282ca

Please sign in to comment.