mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 15:21:26 -05:00
![David Sherret](/assets/img/avatar_default.png)
https://github.com/denoland/deno/pull/20488 enables us to remove this functionality. This is better because our test suite is now not testing a separate code path.
18 lines
486 B
Rust
18 lines
486 B
Rust
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
mod cache;
|
|
mod installer;
|
|
mod registry;
|
|
mod resolution;
|
|
mod resolvers;
|
|
mod tarball;
|
|
|
|
pub use cache::NpmCache;
|
|
pub use cache::NpmCacheDir;
|
|
pub use installer::PackageJsonDepsInstaller;
|
|
pub use registry::CliNpmRegistryApi;
|
|
pub use resolution::NpmResolution;
|
|
pub use resolvers::create_npm_fs_resolver;
|
|
pub use resolvers::CliNpmResolver;
|
|
pub use resolvers::NpmPackageFsResolver;
|
|
pub use resolvers::NpmProcessState;
|