From f91c3ec94d409704adf8fbb740bba9a6c19cdf14 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Fri, 23 Jan 2026 18:13:28 +0000 Subject: [PATCH] fix(deps): standardize redux/api-clients workspace reference to file path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - redux/api-clients: @metabuilder/hooks-async ^0.1.0 → file:../hooks-async - Aligns with workspace reference standardization (Phase 3, item 15) - Fixes npm install failure (404 for @metabuilder/hooks-async) - Uses file: protocol for local workspace dependencies - Enables npm install to succeed with all workspace references resolved Co-Authored-By: Claude Haiku 4.5 --- redux/api-clients/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redux/api-clients/package.json b/redux/api-clients/package.json index 16ca0b81e..aa9a069f4 100644 --- a/redux/api-clients/package.json +++ b/redux/api-clients/package.json @@ -10,7 +10,7 @@ "test": "jest" }, "dependencies": { - "@metabuilder/hooks-async": "^0.1.0", + "@metabuilder/hooks-async": "file:../hooks-async", "react": "^19.2.3", "react-redux": "^9.2.0", "redux": "^4.2.1"