diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-09-02 17:38:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-02 17:38:19 +0200 |
commit | c84532b6d5a424694c519260f0cf407b1d8ba604 (patch) | |
tree | b0cd78f2f851ceb8b8b92fc146e8e5d29b263505 /cli/main.rs | |
parent | 77ead8af20180453aa2d0db67d7856641bd5498f (diff) |
chore: upgrade crates (#11894)
Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index beb54cd23..b68539ad8 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -566,6 +566,7 @@ async fn eval_command( }, source: String::from_utf8(source_code)?, specifier: main_module.clone(), + maybe_headers: None, }; // Save our fake file into file fetcher cache @@ -815,6 +816,7 @@ async fn run_from_stdin(flags: Flags) -> Result<(), AnyError> { media_type: MediaType::TypeScript, source: String::from_utf8(source)?, specifier: main_module.clone(), + maybe_headers: None, }; // Save our fake file into file fetcher cache // to allow module access by TS compiler |