refactor: create deno_lib crate (#27673)

Shifts just some code down for now. I'll do the rest of the refactor in
the next pr, but didn't want to drop a huge refactor.
This commit is contained in:
David Sherret 2025-01-15 09:35:46 -05:00 committed by Bartek Iwańczuk
parent 032af18789
commit 7e495dde58
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750
48 changed files with 1518 additions and 1066 deletions

View file

@ -3,7 +3,6 @@
mod byonm;
pub mod installer;
mod managed;
mod permission_checker;
use std::sync::Arc;
@ -24,8 +23,6 @@ pub use self::managed::CliManagedNpmResolverCreateOptions;
pub use self::managed::CliNpmResolverManagedSnapshotOption;
pub use self::managed::NpmResolutionInitializer;
pub use self::managed::ResolveSnapshotError;
pub use self::permission_checker::NpmRegistryReadPermissionChecker;
pub use self::permission_checker::NpmRegistryReadPermissionCheckerMode;
use crate::file_fetcher::CliFileFetcher;
use crate::http_util::HttpClientProvider;
use crate::sys::CliSys;