Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump @deno/cache-dir to 0.13.2 #192

Merged
merged 4 commits into from
Oct 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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