mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 12:49:10 +00:00
Merge the --recompile and --reload flags (#2003)
This commit is contained in:
parent
51abcd6147
commit
c25e262b04
15 changed files with 188 additions and 194 deletions
|
@ -88,7 +88,8 @@ impl Modules {
|
|||
}
|
||||
|
||||
pub fn print_file_info(&self, deno_dir: &DenoDir, filename: String) {
|
||||
let maybe_out = deno_dir.fetch_module_meta_data(&filename, ".");
|
||||
// TODO Note the --reload flag is ignored here.
|
||||
let maybe_out = deno_dir.fetch_module_meta_data(&filename, ".", true);
|
||||
if maybe_out.is_err() {
|
||||
println!("{}", maybe_out.unwrap_err());
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue