node_maintainer/
lib.rs

1//! An NPM dependency resolver for building `node_modules/` trees and
2//! extracting them to their final resting place.
3
4pub use nassun::Nassun;
5#[cfg(not(target_arch = "wasm32"))]
6pub use nassun::{NassunError, NassunOpts};
7
8pub use error::*;
9pub use into_kdl::IntoKdl;
10pub use lockfile::*;
11#[cfg(not(target_arch = "wasm32"))]
12pub use maintainer::*;
13#[cfg(target_arch = "wasm32")]
14mod wasm;
15
16mod error;
17mod graph;
18mod into_kdl;
19mod linkers;
20mod lockfile;
21mod maintainer;
22mod resolver;
23#[cfg(target_arch = "wasm32")]
24pub use wasm::*;