Skip to content

Commit

Permalink
build: bump maximum allowed yarn version (#33430)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
crisbeto authored and AndrewKushnir committed Oct 29, 2019
1 parent bd40c89 commit a3034ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aio/package.json
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion aio/tools/examples/shared/package.json
Expand Up @@ -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": "",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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",
Expand Down

0 comments on commit a3034ef

Please sign in to comment.