diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-09-01 11:50:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-01 11:50:12 -0400 |
commit | e1d7d7b0e365c3ddfee9e52371dd2c6d75e132e6 (patch) | |
tree | 526dc1bfb9fd1b4e491c8a06cacd954398356d48 /cli/npm/mod.rs | |
parent | 20c835407c695a0cc92be45604bbe5ea652565ea (diff) |
fix(npm): better node version and version requirement compatibility (#15714)
Diffstat (limited to 'cli/npm/mod.rs')
-rw-r--r-- | cli/npm/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/npm/mod.rs b/cli/npm/mod.rs index bdbc5aca3..7bb515e9e 100644 --- a/cli/npm/mod.rs +++ b/cli/npm/mod.rs @@ -3,8 +3,8 @@ mod cache; mod registry; mod resolution; +mod semver; mod tarball; -mod version_req; use std::io::ErrorKind; use std::path::Path; |