diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2022-02-01 09:33:57 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-01 09:33:57 +1100 |
commit | 7d356250e8bbe4e37e3651b328fda76178489588 (patch) | |
tree | 2034053509e324fef72ead3e13e52ec66a06e59d /cli/module_loader.rs | |
parent | 5490cfed2000a063ef0baec500ab7d539203067c (diff) |
refactor: integrate deno_graph breaking changes (#13495)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/module_loader.rs')
-rw-r--r-- | cli/module_loader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/module_loader.rs b/cli/module_loader.rs index afd47c2d4..b6eb5ca51 100644 --- a/cli/module_loader.rs +++ b/cli/module_loader.rs @@ -108,7 +108,7 @@ impl ModuleLoader for CliModuleLoader { async move { ps.prepare_module_load( - vec![specifier], + vec![(specifier, deno_graph::ModuleKind::Esm)], is_dynamic, lib, root_permissions, |