Skip to content

Commit

Permalink
build: update yarn to v4.3.1 (#2132)
Browse files Browse the repository at this point in the history
PR Close #2132
  • Loading branch information
angular-robot authored and josephperrott committed Jun 21, 2024
1 parent b3d3a91 commit 08d7703
Show file tree
Hide file tree
Showing 8 changed files with 228 additions and 228 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.3.0",
"packageManager": "yarn@4.3.1",
"type": "commonjs",
"dependencies": {
"renovate": "37.410.1"
Expand Down
434 changes: 217 additions & 217 deletions .yarn/releases/yarn-4.3.0.cjs → .yarn/releases/yarn-4.3.1.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.3.0.cjs
yarnPath: .yarn/releases/yarn-4.3.1.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.3.0.cjs"],
entry_point = ".yarn/releases/yarn-4.3.0.cjs",
data = [".yarn/releases/yarn-4.3.1.cjs"],
entry_point = ".yarn/releases/yarn-4.3.1.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.3.0.cjs",
"//:.yarn/releases/yarn-4.3.1.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.3.0.cjs",
yarn = "//:.yarn/releases/yarn-4.3.1.cjs",
yarn_lock = "//:yarn.lock",
)

yarn_install(
name = "ts_proto_npm",
args = ["--immutable"],
data = [
"//:.yarn/releases/yarn-4.3.0.cjs",
"//:.yarn/releases/yarn-4.3.1.cjs",
"//tools/ts_proto:.yarnrc.yml",
],
exports_directories_only = False,
package_json = "//tools/ts_proto:package.json",
yarn = "//:.yarn/releases/yarn-4.3.0.cjs",
yarn = "//:.yarn/releases/yarn-4.3.1.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.3.0",
"packageManager": "yarn@4.3.1",
"dependencies": {
"@angular/benchpress": "0.3.0",
"@angular/build": "18.1.0-next.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.3.0.cjs
yarnPath: ../../.yarn/releases/yarn-4.3.1.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.3.0",
"packageManager": "yarn@4.3.1",
"dependencies": {
"protobufjs": "7.3.2",
"protobufjs-cli": "1.1.2"
Expand Down

0 comments on commit 08d7703

Please sign in to comment.