Skip to content

Commit

Permalink
build: update yarn to v3.6.4 (#1431)
Browse files Browse the repository at this point in the history
PR Close #1431
  • Loading branch information
angular-robot authored and josephperrott committed Oct 4, 2023
1 parent 52c2fa8 commit fb30926
Show file tree
Hide file tree
Showing 8 changed files with 142 additions and 142 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@3.6.3",
"packageManager": "yarn@3.6.4",
"type": "commonjs",
"dependencies": {
"renovate": "37.6.0"
Expand Down
262 changes: 131 additions & 131 deletions .yarn/releases/yarn-3.6.3.cjs → .yarn/releases/yarn-3.6.4.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-3.6.3.cjs
yarnPath: .yarn/releases/yarn-3.6.4.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-3.6.3.cjs"],
entry_point = ".yarn/releases/yarn-3.6.3.cjs",
data = [".yarn/releases/yarn-3.6.4.cjs"],
entry_point = ".yarn/releases/yarn-3.6.4.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-3.6.3.cjs",
"//:.yarn/releases/yarn-3.6.4.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-3.6.3.cjs",
yarn = "//:.yarn/releases/yarn-3.6.4.cjs",
yarn_lock = "//:yarn.lock",
)

yarn_install(
name = "ts_proto_npm",
args = ["--immutable"],
data = [
"//:.yarn/releases/yarn-3.6.3.cjs",
"//:.yarn/releases/yarn-3.6.4.cjs",
"//tools/ts_proto:.yarnrc.yml",
],
exports_directories_only = False,
package_json = "//tools/ts_proto:package.json",
yarn = "//:.yarn/releases/yarn-3.6.3.cjs",
yarn = "//:.yarn/releases/yarn-3.6.4.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 @@ -14,7 +14,7 @@
"default": "./*"
}
},
"packageManager": "yarn@3.6.3",
"packageManager": "yarn@3.6.4",
"dependencies": {
"@angular-devkit/build-angular": "17.0.0-next.6",
"@angular/benchpress": "0.3.0",
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-3.6.3.cjs
yarnPath: ../../.yarn/releases/yarn-3.6.4.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@3.6.3",
"packageManager": "yarn@3.6.4",
"dependencies": {
"protobufjs": "7.2.5",
"protobufjs-cli": "1.1.2"
Expand Down

0 comments on commit fb30926

Please sign in to comment.