diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-02-21 08:35:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-21 08:35:25 -0500 |
commit | 9166d8a4e9b0f611b1e06c9e339b44f7c450d72e (patch) | |
tree | 1c4efed34b9c5bebc1f42fdaa8ad28dcca30896a /cli/module_loader.rs | |
parent | 061ee9d38cdf8ff0ade2373c1e075f841c534c47 (diff) |
feat(publish): type check on publish (#22506)
Supersedes #22501 and also fixes that issue.
Diffstat (limited to 'cli/module_loader.rs')
-rw-r--r-- | cli/module_loader.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/module_loader.rs b/cli/module_loader.rs index d2742d1ba..ae7f8f349 100644 --- a/cli/module_loader.rs +++ b/cli/module_loader.rs @@ -167,6 +167,7 @@ impl ModuleLoadPreparer { log_ignored_options: false, reload: self.options.reload_flag() && !roots.iter().all(|r| reload_exclusions.contains(r)), + type_check_mode: self.options.type_check_mode(), }, ) .await?; |