mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 02:48:24 +00:00
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:
parent
d0a4e23ae8
commit
0cc90d9246
12 changed files with 30 additions and 28 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue