refactor: use sys_traits (#27480)

This commit is contained in:
David Sherret 2024-12-30 12:38:20 -05:00 committed by GitHub
parent fd8400eaec
commit c391ad315e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
66 changed files with 1378 additions and 1598 deletions

View file

@ -4,7 +4,6 @@
#![deny(clippy::print_stdout)]
pub mod analyze;
pub mod env;
pub mod errors;
mod npm;
mod package_json;
@ -23,6 +22,7 @@ pub use package_json::PackageJsonThreadLocalCache;
pub use path::PathClean;
pub use resolution::parse_npm_pkg_name;
pub use resolution::resolve_specifier_into_node_modules;
pub use resolution::IsBuiltInNodeModuleChecker;
pub use resolution::NodeResolution;
pub use resolution::NodeResolutionKind;
pub use resolution::NodeResolver;