-
Notifications
You must be signed in to change notification settings - Fork 209
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
feat: support systems without System suffix #3649
base: main
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@latticexyz/world": patch | ||
--- | ||
|
||
Support systems without the System suffix by adding them to the MUD config. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,10 +22,22 @@ export async function getSystemContracts({ | |
pattern: path.join(config.sourceDirectory, "**"), | ||
}); | ||
|
||
// Get systems from the top-level systems object | ||
const topLevelSystems = Object.keys(config.systems); | ||
|
||
// Get systems from namespaces | ||
const namespaceSystems = Object.values(config.namespaces || {}).flatMap((namespace) => | ||
Object.keys(namespace.systems || {}), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ideally we map these to namespace.label rather than key to keep tooling consistent There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. now I'm doing: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sorry, the namespaces flatMap is the "standard" path for this kinda thing |
||
); | ||
|
||
// Combine both sets of systems | ||
const configSystems = [...topLevelSystems, ...namespaceSystems]; | ||
|
||
return solidityFiles | ||
.filter( | ||
(file) => | ||
file.basename.endsWith("System") && | ||
// Include files with the System suffix and files defined in config | ||
(file.basename.endsWith("System") || configSystems.includes(file.basename)) && | ||
// exclude the base System contract | ||
file.basename !== "System" && | ||
// exclude interfaces | ||
|
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.
no need for this! the top level config is also mirrored to the namespaces config (the default entry point for tooling)