diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-06-11 08:55:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-11 08:55:12 -0400 |
commit | 4bc96c5d2ab46ff3ca1af1524c1913c2a5f2745c (patch) | |
tree | 8452947b0267e47c795cadb02d2d1b44b3e40f81 /tests/registry | |
parent | 6a356aff1380e79d67738c5b43aa2b5fee76600d (diff) |
fix(npm): resolve dynamic npm imports individually (#24170)
* https://github.com/denoland/deno_npm/pull/57
* https://github.com/denoland/deno_graph/pull/498
Closes https://github.com/denoland/deno/issues/17802
Diffstat (limited to 'tests/registry')
-rw-r--r-- | tests/registry/npm/@denotest/dep-cannot-parse/1.0.0/package.json | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/dep-cannot-parse/1.0.0/package.json b/tests/registry/npm/@denotest/dep-cannot-parse/1.0.0/package.json new file mode 100644 index 000000000..8a069ef72 --- /dev/null +++ b/tests/registry/npm/@denotest/dep-cannot-parse/1.0.0/package.json @@ -0,0 +1,7 @@ +{ + "name": "@denotest/dep-cannot-parse", + "version": "1.0.0", + "dependencies": { + "@denotest/esm-basic": "unknown-scheme:unknown" + } +} |