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/npm/resolution/snapshot.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/npm/resolution/snapshot.rs')
-rw-r--r-- | cli/npm/resolution/snapshot.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/npm/resolution/snapshot.rs b/cli/npm/resolution/snapshot.rs index d76ba8b1a..738b68d21 100644 --- a/cli/npm/resolution/snapshot.rs +++ b/cli/npm/resolution/snapshot.rs @@ -13,7 +13,7 @@ use deno_core::parking_lot::Mutex; use serde::Deserialize; use serde::Serialize; -use crate::lockfile::Lockfile; +use crate::args::Lockfile; use crate::npm::cache::should_sync_download; use crate::npm::cache::NpmPackageCacheFolderId; use crate::npm::registry::NpmPackageVersionDistInfo; |