-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Correctly mark peer-dependencies as external dependencies, disab…
…le export of module components (#125)
- Loading branch information
Showing
3 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
export * from './core'; | ||
export * from './modules'; | ||
// 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'; |