diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-13 10:03:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 14:03:19 +0000 |
commit | 11f225ef7d8d51a048c11c57f47674e1c5bb6f3e (patch) | |
tree | e6f4e823a8f91d29fa871f33bd9bb82c750fb9a8 /cli/npm/resolution/snapshot.rs | |
parent | 983447e860529d1b95ed68eee5aae1696c11d2bd (diff) |
fix: ensure no node_modules directory is created when a package.json exists and no npm dependencies are used (#18134)
Closes #18133
Closes #18038
Diffstat (limited to 'cli/npm/resolution/snapshot.rs')
-rw-r--r-- | cli/npm/resolution/snapshot.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/npm/resolution/snapshot.rs b/cli/npm/resolution/snapshot.rs index e986294ec..e8df8286e 100644 --- a/cli/npm/resolution/snapshot.rs +++ b/cli/npm/resolution/snapshot.rs @@ -127,6 +127,11 @@ mod map_to_vec { } impl NpmResolutionSnapshot { + /// Gets if this snapshot is empty. + pub fn is_empty(&self) -> bool { + self.packages.is_empty() && self.pending_unresolved_packages.is_empty() + } + /// Resolve a package from a package requirement. pub fn resolve_pkg_from_pkg_req( &self, |