diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-06-26 17:24:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-26 21:24:10 +0000 |
commit | 0da01c0ca6b537f74be32126e567bdfc2c73ed16 (patch) | |
tree | ef29d32cffb03a975a58c16827b0691dda50a5b3 /cli/standalone/binary.rs | |
parent | 86e0292733d6d08bf338b68fd50863aef17b1e44 (diff) |
refactor: move PackageJson to deno_config (#24348)
Diffstat (limited to 'cli/standalone/binary.rs')
-rw-r--r-- | cli/standalone/binary.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/standalone/binary.rs b/cli/standalone/binary.rs index 8df52e3eb..98af5fa77 100644 --- a/cli/standalone/binary.rs +++ b/cli/standalone/binary.rs @@ -15,6 +15,8 @@ use std::path::PathBuf; use std::process::Command; use deno_ast::ModuleSpecifier; +use deno_config::package_json::PackageJsonDepValueParseError; +use deno_config::package_json::PackageJsonDeps; use deno_core::anyhow::bail; use deno_core::anyhow::Context; use deno_core::error::AnyError; @@ -31,8 +33,6 @@ use log::Level; use serde::Deserialize; use serde::Serialize; -use crate::args::package_json::PackageJsonDepValueParseError; -use crate::args::package_json::PackageJsonDeps; use crate::args::CaData; use crate::args::CliOptions; use crate::args::CompileFlags; |