Skip to content

Commit

Permalink
Pull link-checking fix for name attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredkrinke committed Oct 10, 2023
1 parent e08ef39 commit f44d383
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ export type { SiteMetadata };
export type { PostMetadata };
export { validate as validateSiteMetadata } from "./schema/site.ts";
export { validate as validatePostMetadata } from "./schema/post.ts";
export { Goldsmith } from "https://deno.land/x/[email protected].0/mod.ts";
export type { GoldsmithPlugin, GoldsmithFile } from "https://deno.land/x/[email protected].0/mod.ts";
export { goldsmithJSONMetadata } from "https://deno.land/x/[email protected].0/plugins/json_metadata/mod.ts";
export { goldsmithFrontMatter } from "https://deno.land/x/[email protected].0/plugins/front_matter/mod.ts";
export { goldsmithExcludeDrafts } from "https://deno.land/x/[email protected].0/plugins/exclude_drafts/mod.ts";
export { goldsmithFileMetadata } from "https://deno.land/x/[email protected].0/plugins/file_metadata/mod.ts";
export { goldsmithIndex } from "https://deno.land/x/[email protected].0/plugins/index/mod.ts";
export { goldsmithCollections } from "https://deno.land/x/[email protected].0/plugins/collections/mod.ts";
export { goldsmithInjectFiles } from "https://deno.land/x/[email protected].0/plugins/inject_files/mod.ts";
export { goldsmithMarkdown } from "https://deno.land/x/[email protected].0/plugins/markdown/mod.ts";
export { goldsmithRootPaths } from "https://deno.land/x/[email protected].0/plugins/root_paths/mod.ts";
export { goldsmithLayout } from "https://deno.land/x/[email protected].0/plugins/layout/mod.ts";
export { goldsmithLayoutLiteralHTML } from "https://deno.land/x/[email protected].0/plugins/layout/literal_html.ts";
export type { GoldsmithLiteralHTMLLayoutContext, GoldsmithLiteralHTMLLayoutCallback, GoldsmithLiteralHTMLLayoutMap } from "https://deno.land/x/[email protected].0/plugins/layout/literal_html.ts";
export { goldsmithWatch } from "https://deno.land/x/[email protected].0/plugins/watch/mod.ts";
export { goldsmithServe } from "https://deno.land/x/[email protected].0/plugins/serve/mod.ts";
export { goldsmithFeed } from "https://deno.land/x/[email protected].0/plugins/feed/mod.ts";
export { goldsmithLinkChecker } from "https://deno.land/x/[email protected].0/plugins/link_checker/mod.ts";
export { Goldsmith } from "https://deno.land/x/[email protected].1/mod.ts";
export type { GoldsmithPlugin, GoldsmithFile } from "https://deno.land/x/[email protected].1/mod.ts";
export { goldsmithJSONMetadata } from "https://deno.land/x/[email protected].1/plugins/json_metadata/mod.ts";
export { goldsmithFrontMatter } from "https://deno.land/x/[email protected].1/plugins/front_matter/mod.ts";
export { goldsmithExcludeDrafts } from "https://deno.land/x/[email protected].1/plugins/exclude_drafts/mod.ts";
export { goldsmithFileMetadata } from "https://deno.land/x/[email protected].1/plugins/file_metadata/mod.ts";
export { goldsmithIndex } from "https://deno.land/x/[email protected].1/plugins/index/mod.ts";
export { goldsmithCollections } from "https://deno.land/x/[email protected].1/plugins/collections/mod.ts";
export { goldsmithInjectFiles } from "https://deno.land/x/[email protected].1/plugins/inject_files/mod.ts";
export { goldsmithMarkdown } from "https://deno.land/x/[email protected].1/plugins/markdown/mod.ts";
export { goldsmithRootPaths } from "https://deno.land/x/[email protected].1/plugins/root_paths/mod.ts";
export { goldsmithLayout } from "https://deno.land/x/[email protected].1/plugins/layout/mod.ts";
export { goldsmithLayoutLiteralHTML } from "https://deno.land/x/[email protected].1/plugins/layout/literal_html.ts";
export type { GoldsmithLiteralHTMLLayoutContext, GoldsmithLiteralHTMLLayoutCallback, GoldsmithLiteralHTMLLayoutMap } from "https://deno.land/x/[email protected].1/plugins/layout/literal_html.ts";
export { goldsmithWatch } from "https://deno.land/x/[email protected].1/plugins/watch/mod.ts";
export { goldsmithServe } from "https://deno.land/x/[email protected].1/plugins/serve/mod.ts";
export { goldsmithFeed } from "https://deno.land/x/[email protected].1/plugins/feed/mod.ts";
export { goldsmithLinkChecker } from "https://deno.land/x/[email protected].1/plugins/link_checker/mod.ts";
export { version } from "./version.ts";

declare module "https://deno.land/x/[email protected].0/mod.ts" {
declare module "https://deno.land/x/[email protected].1/mod.ts" {
interface GoldsmithMetadata {
site?: SiteMetadata;
tagsAll?: string[];
Expand Down

0 comments on commit f44d383

Please sign in to comment.