From 1d5511060cf5bcb0aba78fa7a0b29d11351e8dc7 Mon Sep 17 00:00:00 2001 From: crisbeto Date: Sun, 27 Oct 2019 10:07:14 +0100 Subject: [PATCH] build: bump maximum allowed yarn version (#33430) Currently this repo allows Yarn between 1.17.3 and 1.18.0, whereas the components repo requires a minimum of 1.19.1 which makes it annoying to switch between repositories. These changes bump the maximum allowed Yarn version. PR Close #33430 --- aio/package.json | 2 +- aio/tools/examples/shared/package.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/package.json b/aio/package.json index bf4c6ce85a83cc..701df8eb54cef0 100644 --- a/aio/package.json +++ b/aio/package.json @@ -83,7 +83,7 @@ "//engines-comment": "Keep this in sync with ../package.json", "engines": { "node": ">=10.9.0 <13.0.0", - "yarn": ">=1.17.3 <=1.18.0" + "yarn": ">=1.17.3 <=1.19.1" }, "private": true, "dependencies": { diff --git a/aio/tools/examples/shared/package.json b/aio/tools/examples/shared/package.json index e2ee5852f1b11f..9bac49514f8afa 100644 --- a/aio/tools/examples/shared/package.json +++ b/aio/tools/examples/shared/package.json @@ -12,7 +12,7 @@ }, "engines": { "node": ">=10.9.0 <11.0.0", - "yarn": ">=1.17.3 <=1.18.0" + "yarn": ">=1.17.3 <=1.19.1" }, "keywords": [], "author": "", diff --git a/package.json b/package.json index 6cadc78a30b4a0..266182a7a35a88 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "//engines-comment": "Keep this in sync with aio/package.json", "engines": { "node": ">=10.9.0 <13.0.0", - "yarn": ">=1.17.3 <=1.18.0" + "yarn": ">=1.17.3 <=1.19.1" }, "repository": { "type": "git",