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 GitHub
parent 836a623d99
commit 05dc69932d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
48 changed files with 1518 additions and 1066 deletions

6
cli/lib/npm/mod.rs Normal file
View file

@ -0,0 +1,6 @@
// Copyright 2018-2025 the Deno authors. MIT license.
mod permission_checker;
pub use permission_checker::NpmRegistryReadPermissionChecker;
pub use permission_checker::NpmRegistryReadPermissionCheckerMode;