refactor: move lockfile.rs to args module (#16818)

This should be in the `args` folder as it's similar to `config_file`.
This commit is contained in:
David Sherret 2022-11-25 17:00:28 -05:00 committed by GitHub
parent d0a4e23ae8
commit 0cc90d9246
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 30 additions and 28 deletions

View file

@ -10,7 +10,7 @@ use deno_core::parking_lot::RwLock;
use serde::Deserialize;
use serde::Serialize;
use crate::lockfile::Lockfile;
use crate::args::Lockfile;
use self::graph::GraphDependencyResolver;
use self::snapshot::NpmPackagesPartitioned;

View file

@ -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;