diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-01-22 16:31:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 22:31:12 +0100 |
commit | 69d5f136badfd7cfa9b979ff2fee7caf397098ca (patch) | |
tree | 665c6686fbf6f0732d84984f5f48557e45b4c7b6 /cli/npm/managed/installer.rs | |
parent | d20c9e75d1540b1a27e721d0cf66d29ba6a2c3fb (diff) |
feat(lockfile): track JSR and npm dependencies in config file (#22004)
See overview in https://github.com/denoland/deno_lockfile/pull/13
Diffstat (limited to 'cli/npm/managed/installer.rs')
-rw-r--r-- | cli/npm/managed/installer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/npm/managed/installer.rs b/cli/npm/managed/installer.rs index c836ff7d8..f762be70e 100644 --- a/cli/npm/managed/installer.rs +++ b/cli/npm/managed/installer.rs @@ -82,7 +82,7 @@ impl PackageJsonDepsInstaller { return Ok(()); // already installed by something else } - let package_reqs = inner.deps_provider.reqs(); + let package_reqs = inner.deps_provider.reqs().unwrap_or_default(); // check if something needs resolving before bothering to load all // the package information (which is slow) |