summaryrefslogtreecommitdiff
path: root/cli/factory.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-03-05 15:45:44 -0500
committerGitHub <noreply@github.com>2024-03-05 15:45:44 -0500
commit942dcbad84f8fd594fe330685e3956884a88969e (patch)
treeae840817222a503c0f769bfcc67344b94d4fac46 /cli/factory.rs
parentc38f59f6579910b922d89b341d80e5fa01fee3d7 (diff)
refactor: move deno json functionality to args module (#22710)
Diffstat (limited to 'cli/factory.rs')
-rw-r--r--cli/factory.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/factory.rs b/cli/factory.rs
index bee3ea5f6..54ec6ac5e 100644
--- a/cli/factory.rs
+++ b/cli/factory.rs
@@ -1,5 +1,6 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
+use crate::args::deno_json::deno_json_deps;
use crate::args::CliOptions;
use crate::args::DenoSubcommand;
use crate::args::Flags;
@@ -44,7 +45,6 @@ use crate::resolver::SloppyImportsResolver;
use crate::standalone::DenoCompileBinaryWriter;
use crate::tools::check::TypeChecker;
use crate::tools::coverage::CoverageCollector;
-use crate::tools::registry::deno_json_deps;
use crate::tools::run::hmr::HmrRunner;
use crate::util::file_watcher::WatcherCommunicator;
use crate::util::fs::canonicalize_path_maybe_not_exists;