From 9fe7a58693ef7dd0a4e3280052065e9af7906c09 Mon Sep 17 00:00:00 2001 From: Kamil Mielnik <kamil@kamilmielnik.com> Date: Mon, 15 May 2023 18:58:52 +0700 Subject: [PATCH] Exclude yarn >=2 from engines in package.json (#30752) - The project works with yarn v1 only --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a722a533a22..3e825432443 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "license": "private", "engines": { "node": ">=16", - "yarn": ">=1.12.3" + "yarn": "^1.12.3" }, "dependencies": { "@emotion/react": "^11.7.1", -- GitLab