-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(cli): fixed module artifactPath imports #2832
Conversation
🦋 Changeset detectedLatest commit: 91b86a1 The changes in this PR will be included in the next version bump. This PR includes changesets to release 23 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
@@ -22,7 +21,7 @@ export const worldTables = configToTables(worldToV1(worldConfig)); | |||
|
|||
export const worldDeployEvents = [helloStoreEvent, helloWorldEvent] as const; | |||
|
|||
export const worldAbi = [...IBaseWorldAbi, ...IModuleAbi] as const; | |||
export const worldAbi = IBaseWorldAbi; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the IBaseWorld
ABI now includes the errors we wanted from IModule
ABI
I should have removed this in #2803 because we had already removed artifact imports there so we weren't using the dep anymore
this clears the path for using
mud
CLI inside world-modules, which means we can split up the big, gnarly mud config there