Skip to content

Commit 77b0e0e

Browse files
josephperrottjelbourn
authored andcommitted
build: bump yarn requirement to 1.17.3 (#16890)
1 parent d3f63a3 commit 77b0e0e

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,13 @@ var_10: &yarn_download
6464
name: "Downloading and installing Yarn"
6565
command: |
6666
touch $BASH_ENV
67-
curl -o- -L https://yarnpkg.com/install.sh | PROFILE=$BASH_ENV bash -s -- --version "1.16.0"
68-
67+
curl -o- -L https://yarnpkg.com/install.sh | PROFILE=$BASH_ENV bash -s -- --version "1.17.3"
6968
# Sets up the Bazel config which is specific for CircleCI builds.
7069
var_11: &setup_bazel_ci_config
7170
run:
7271
name: "Setting up Bazel configuration for CI"
7372
command: |
7473
echo "import %workspace%/.circleci/bazel.rc" >> ./.bazelrc
75-
7674
# Sets up a different Docker image that includes a moe recent Firefox version which
7775
# is needed for headless testing.
7876
var_12: &docker-firefox-image
@@ -322,7 +320,6 @@ jobs:
322320
command: |
323321
mkdir -p /tmp/cdk-umd-minified-bundles
324322
cp dist/releases/cdk/bundles/*.umd.min.js /tmp/cdk-umd-minified-bundles
325-
326323
# Publish bundle artifacts which will be used to calculate the size change.
327324
# Note: Make sure that the size plugin from the Angular robot fetches the artifacts
328325
# from this CircleCI job (see .github/angular-robot.yml). Additionally any artifacts need to

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ check_bazel_version("0.27.0")
2626

2727
node_repositories(
2828
# For deterministic builds, specify explicit NodeJS and Yarn versions.
29-
node_version = "10.13.0",
29+
node_version = "10.16.0",
3030
yarn_repositories = {
31-
"1.16.0": ("yarn-v1.16.0.tar.gz", "yarn-v1.16.0", "df202627d9a70cf09ef2fb11cb298cb619db1b958590959d6f6e571b50656029"),
31+
"1.17.3": ("yarn-v1.17.3.tar.gz", "yarn-v1.17.3", "e3835194409f1b3afa1c62ca82f561f1c29d26580c9e220c36866317e043c6f3"),
3232
},
33-
yarn_version = "1.16.0",
33+
yarn_version = "1.17.3",
3434
)
3535

3636
yarn_install(

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"license": "MIT",
1111
"engines": {
1212
"node": ">= 5.4.1",
13-
"yarn": ">= 1.13.0"
13+
"yarn": ">= 1.17.3"
1414
},
1515
"scripts": {
1616
"postinstall": "ngc -p angular-tsconfig.json",

0 commit comments

Comments
 (0)