Skip to content

Commit

Permalink
perf: update bin.ts to load schema from correct location
Browse files Browse the repository at this point in the history
Updated the `URL` for loading the schema document in the `bin.ts` file.
  • Loading branch information
JonDotsoy committed Aug 14, 2024
1 parent ddcaed6 commit d188786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function createProgressSpin() {
}

const schemaDocument = new SchemaDocument(
new URL("./schema.json", import.meta.url),
new URL("../schema.json", import.meta.url),
);

type MainOptions = {
Expand Down

0 comments on commit d188786

Please sign in to comment.