summaryrefslogtreecommitdiff
path: root/cli/npm/resolvers/mod.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-11-25 17:00:28 -0500
committerGitHub <noreply@github.com>2022-11-25 17:00:28 -0500
commit0cc90d9246ff2c392457632d5030eaca2ca1ca6f (patch)
tree64e3a777d0ee2674768390d3124508434441fcf7 /cli/npm/resolvers/mod.rs
parentd0a4e23ae824baf1994291d8480be29719f1b99a (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/npm/resolvers/mod.rs')
-rw-r--r--cli/npm/resolvers/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/npm/resolvers/mod.rs b/cli/npm/resolvers/mod.rs
index 23cbde5d9..869874c8b 100644
--- a/cli/npm/resolvers/mod.rs
+++ b/cli/npm/resolvers/mod.rs
@@ -22,8 +22,8 @@ use std::path::Path;
use std::path::PathBuf;
use std::sync::Arc;
+use crate::args::Lockfile;
use crate::fs_util;
-use crate::lockfile::Lockfile;
use self::common::InnerNpmPackageResolver;
use self::local::LocalNpmPackageResolver;