Skip to content

Commit

Permalink
fix: bump @deno/cache-dir to 0.13.2 (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
magurotuna authored Oct 29, 2024
1 parent a38cc6c commit b61b0db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import {
type CacheSetting,
createCache,
type FetchCacher,
} from "jsr:@deno/cache-dir@0.8";
} from "jsr:@deno/cache-dir@0.13.2";

/** The output of the {@linkcode bundle} function. */
export interface BundleEmit {
Expand Down Expand Up @@ -329,6 +329,8 @@ async function processImportMapInput(
}
case "external":
throw new Error("External import maps are not supported.");
case "redirect":
throw new Error("Redirects are not supported for import maps.");
default: {
const _assertNever: never = data;
throw new Error("Unexpected kind.");
Expand Down

0 comments on commit b61b0db

Please sign in to comment.