diff options
author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-10-25 13:19:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-25 20:19:03 +0000 |
commit | ec968aa5aec068e92fb554fc7192d912bcddb82c (patch) | |
tree | 48e158f24bef5f4ca85cbc5eb5e3a32acccdad7a /tests/registry/jsr/@denotest/multiple-exports/1.0.0/add.ts | |
parent | a01edb394d2785b7d37da6435bb37381efc376ea (diff) |
fix(install): cache json exports of JSR packages (#26552)
Fixes https://github.com/denoland/deno/issues/26509.
Ended up being a `deno_graph` bug causing the error to surface. This PR
updates `deno_graph` to pick up the fix and reverts the temporary
workaround that skipped JSON exports.
Diffstat (limited to 'tests/registry/jsr/@denotest/multiple-exports/1.0.0/add.ts')
-rw-r--r-- | tests/registry/jsr/@denotest/multiple-exports/1.0.0/add.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/registry/jsr/@denotest/multiple-exports/1.0.0/add.ts b/tests/registry/jsr/@denotest/multiple-exports/1.0.0/add.ts new file mode 100644 index 000000000..de02f6902 --- /dev/null +++ b/tests/registry/jsr/@denotest/multiple-exports/1.0.0/add.ts @@ -0,0 +1 @@ +export * from "jsr:@denotest/add@1"; |