From c8cc547197e1ae6df5e2dae1d61cd4a2724d8c75 Mon Sep 17 00:00:00 2001 From: Jongsun Suh Date: Wed, 8 Nov 2023 12:40:47 -0800 Subject: [PATCH] Add `json-rpc-middleware-stream` to root `tsconfig` files (#2013) ## Explanation - Fixes missing `json-rpc-middleware-stream` entries in root tsconfig files that causes build failure during release workflow. - Will add note in migration process guide (https://github.com/MetaMask/core/issues/1551#issuecomment-1745665740) about the importance of step C-2. ## References - See https://github.com/MetaMask/core/issues/1552 ## Checklist - [x] I've updated the test suite for new or updated code as appropriate - [x] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [x] I've highlighted breaking changes using the "BREAKING" category above as appropriate --- tsconfig.build.json | 3 +++ tsconfig.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tsconfig.build.json b/tsconfig.build.json index 4e1f9e030b..ae7873512d 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -36,6 +36,9 @@ { "path": "./packages/json-rpc-engine/tsconfig.build.json" }, + { + "path": "./packages/json-rpc-middleware-stream/tsconfig.build.json" + }, { "path": "./packages/keyring-controller/tsconfig.build.json" }, diff --git a/tsconfig.json b/tsconfig.json index 50cab6fd3e..1e14c95c88 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -40,6 +40,9 @@ { "path": "./packages/json-rpc-engine" }, + { + "path": "./packages/json-rpc-middleware-stream" + }, { "path": "./packages/keyring-controller" },