diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-25 17:00:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 17:00:28 -0500 |
commit | 0cc90d9246ff2c392457632d5030eaca2ca1ca6f (patch) | |
tree | 64e3a777d0ee2674768390d3124508434441fcf7 /cli/resolver.rs | |
parent | d0a4e23ae824baf1994291d8480be29719f1b99a (diff) |
refactor: move lockfile.rs to args module (#16818)
This should be in the `args` folder as it's similar to `config_file`.
Diffstat (limited to 'cli/resolver.rs')
-rw-r--r-- | cli/resolver.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/resolver.rs b/cli/resolver.rs index c28d9df75..a4c4439ab 100644 --- a/cli/resolver.rs +++ b/cli/resolver.rs @@ -8,7 +8,7 @@ use deno_graph::source::DEFAULT_JSX_IMPORT_SOURCE_MODULE; use import_map::ImportMap; use std::sync::Arc; -use crate::args::config_file::JsxImportSourceConfig; +use crate::args::JsxImportSourceConfig; /// A resolver that takes care of resolution, taking into account loaded /// import map, JSX settings. |