From e37a1fa9da9303c53bb4fa4204e69752978a6a58 Mon Sep 17 00:00:00 2001 From: Fabrice Francois Date: Thu, 4 Apr 2024 06:28:07 -0400 Subject: [PATCH] export module components --- CHANGELOG.md | 1 + src/index.ts | 5 +---- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bbe2be38..8c331efe3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Fixed +- Reexport module components - Library build process to avoid bundling dependencies and peer-dependencies when using subfolders import (e.g. `wagmi/chains`) - Formatter utility to support negative numbers diff --git a/src/index.ts b/src/index.ts index 5d24c5c30..01d5ed10a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,2 @@ export * from './core'; -// Temporarily disable modules component export as Aragon App will throw error when trying to import components from -// the ODS library. The error is caused by the ODS build because it imports the WagmiProvider that is not implemented -// on Wagmi v1. Enable modules component export when Aragon App migrates to Wagmi v2 (https://aragonassociation.atlassian.net/browse/APP-2949) -// export * from './modules'; +export * from './modules';