diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-04-21 16:38:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 16:38:10 -0400 |
commit | 4a33c349afd4b2728eb8c3c29676651353282d3b (patch) | |
tree | a21ff79a51f9842347bab48051f5987f53bd018a /ext/node/lib.rs | |
parent | 065d8771adfae6aa75cdd367741468c823fbae4a (diff) |
refactor: move some CJS and ESM code analysis to ext/node (#18789)
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index 65db6e45f..a521e161c 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -12,6 +12,7 @@ use std::path::Path; use std::path::PathBuf; use std::rc::Rc; +pub mod analyze; mod crypto; pub mod errors; mod idna; |