We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39af95a commit 9ac21aaCopy full SHA for 9ac21aa
src/build/compile.rs
@@ -696,6 +696,7 @@ pub fn mark_modules_with_expired_deps_dirty(build_state: &mut BuildState) {
696
// "✅ {} is a dependent of {} ({:?} / {:?})",
697
// module_name, dependent, last_compiled_dependent, last_compiled
698
// );
699
+
700
modules_with_expired_deps.insert(dependent.to_string());
701
} else {
702
// println!(
@@ -704,6 +705,9 @@ pub fn mark_modules_with_expired_deps_dirty(build_state: &mut BuildState) {
704
705
706
}
707
708
+ (None, _) => {
709
+ modules_with_expired_deps.insert(dependent.to_string());
710
+ }
711
_ => (),
712
713
0 commit comments