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

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