diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-24 16:23:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 16:23:10 -0400 |
commit | 91ca9904b57db275a51a81ad71b1ee9fe42c7cda (patch) | |
tree | da6b478939b6bdf5a11f57a5a92f1dad8905fca5 /cli/standalone | |
parent | 114ec3c1f71b40bd4bba473b0187e7c664ed1755 (diff) |
refactor: upgrade to deno_npm 0.6 (#19244)
Diffstat (limited to 'cli/standalone')
-rw-r--r-- | cli/standalone/binary.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/standalone/binary.rs b/cli/standalone/binary.rs index b71fda776..578d23a0b 100644 --- a/cli/standalone/binary.rs +++ b/cli/standalone/binary.rs @@ -551,7 +551,7 @@ impl<'a> DenoCompileBinaryWriter<'a> { { let folder = self .npm_resolver - .resolve_pkg_folder_from_pkg_id(&package.pkg_id)?; + .resolve_pkg_folder_from_pkg_id(&package.id)?; builder.add_dir_recursive(&folder)?; } // overwrite the root directory's name to obscure the user's registry url |