From 8c2654e30aff18c15a4a8920c2a94f0bfc2357e7 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Thu, 16 May 2024 15:43:02 +0530 Subject: [PATCH] [web] Make corepack happy Latest Node 20 (20.13.1) ships with an updated corepack which seems to insist putting a package manager field in package.json (https://github.com/nodejs/corepack/pull/413). Let it have its way, hoping that this doesn't break someone's workflow (depending on how they installed yarn without corepack or if they have a node version that doesn't have corepack). --- web/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/package.json b/web/package.json index 29e8add28ee..25fea2176e5 100644 --- a/web/package.json +++ b/web/package.json @@ -45,5 +45,6 @@ "eslint": "^8", "prettier": "^3", "typescript": "^5" - } + }, + "packageManager": "yarn@1.22.21" }