From 8011fcd0c522fee576af53e5c2db1b9dfbcedca7 Mon Sep 17 00:00:00 2001 From: Freek van Rijt Date: Fri, 7 Aug 2026 14:01:33 +0200 Subject: [PATCH] fix(address-widget): pin yarn to 4.17.1 so the build runs The address-widget workspace pinned yarn 4.3.1 while the rest of the plugin is on 4.17.1. Its build script shells out to a nested yarn run, which then picked up 4.3.1 and refused to start, because the approvedGitRepositories setting in .yarnrc.yml only exists in newer yarn. That broke yarn build for the whole plugin. Pinning the workspace to the same 4.17.1 the plugin already uses fixes it. Co-Authored-By: Claude Opus 5 (1M context) --- views/frontend/checkout-address-widget/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/frontend/checkout-address-widget/package.json b/views/frontend/checkout-address-widget/package.json index c8d33d3c6..480f33ceb 100644 --- a/views/frontend/checkout-address-widget/package.json +++ b/views/frontend/checkout-address-widget/package.json @@ -1,6 +1,6 @@ { "name": "@myparcel-woocommerce/address-widget", - "packageManager": "yarn@4.3.1", + "packageManager": "yarn@4.17.1", "version": "1.0.0", "private": true, "type": "module",