Skip to content

Commit

Permalink
fix: createManifestValidator failing because schemastore.org is retur…
Browse files Browse the repository at this point in the history
…ning 503 (#183)
  • Loading branch information
ssf01 authored and aklinker1 committed Mar 5, 2024
1 parent ed38f4d commit 5b07c2f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -5,7 +5,7 @@ import { inspect } from "node:util";
import Ajv from "ajv";
import { withTimeout } from "./utils";

const SCHEMA_URL = new URL("https://json.schemastore.org/chrome-manifest");
const SCHEMA_URL = new URL("https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/chrome-manifest.json");

export type ValidateManifest = (manifest: any | undefined) => Promise<void>;

Expand Down

0 comments on commit 5b07c2f

Please sign in to comment.