mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41:12 +00:00
exclude the Effect module from being loaded, for now
This commit is contained in:
parent
c08972cc55
commit
40aa166473
1 changed files with 3 additions and 1 deletions
|
@ -127,7 +127,9 @@ impl Dependencies {
|
|||
|
||||
// all the dependencies can be loaded
|
||||
for dep in dependencies {
|
||||
output.insert((*dep, LoadHeader));
|
||||
if !format!("{:?}", dep).contains("Effect") {
|
||||
output.insert((*dep, LoadHeader));
|
||||
}
|
||||
}
|
||||
|
||||
output
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue