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/registry.rs | |
parent | 20c835407c695a0cc92be45604bbe5ea652565ea (diff) |
fix(npm): better node version and version requirement compatibility (#15714)
Diffstat (limited to 'cli/npm/registry.rs')
-rw-r--r-- | cli/npm/registry.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/npm/registry.rs b/cli/npm/registry.rs index ab7d81b75..c70741b01 100644 --- a/cli/npm/registry.rs +++ b/cli/npm/registry.rs @@ -23,7 +23,7 @@ use crate::fs_util; use crate::http_cache::CACHE_PERM; use super::cache::NpmCache; -use super::version_req::NpmVersionReq; +use super::semver::NpmVersionReq; // npm registry docs: https://github.com/npm/registry/blob/master/docs/REGISTRY-API.md |