Unverified Commit 323c475f authored by Hong Minhee's avatar Hong Minhee
Browse files

Upgrade dependencies

parent a7c2b2f5
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2,11 +2,11 @@ export const snapshot = {};
snapshot[`generateClasses() 1`] = `
"// deno-lint-ignore-file ban-unused-ignore
import { Temporal } from \\"npm:@js-temporal/polyfill@^0.4.4\\";
import jsonld from \\"npm:jsonld@8.3.2\\";
import { Temporal } from \\"@js-temporal/polyfill\\";
import jsonld from \\"jsonld\\";
import { LanguageTag, parseLanguageTag }
    from \\"npm:@phensley/language-tag@1.8.0\\";
import { exportSPKI, importSPKI } from \\"npm:jose@5.2.2\\";
    from \\"@phensley/language-tag\\";
import { exportSPKI, importSPKI } from \\"jose\\";
import { DocumentLoader, fetchDocumentLoader }
    from \\"../runtime/docloader.ts\\";
import { LanguageString } from \\"../runtime/langstr.ts\\";
+3 −3
Original line number Diff line number Diff line
import { assertEquals } from "jsr:@std/assert@^0.218.2";
import { dirname, join } from "jsr:@std/path@^0.218.2";
import { assertSnapshot } from "jsr:@std/testing@^0.218.2/snapshot";
import { assertEquals } from "@std/assert";
import { dirname, join } from "@std/path";
import { assertSnapshot } from "@std/testing/snapshot";
import { generateClasses, sortTopologically } from "./class.ts";
import { loadSchemaFiles } from "./schema.ts";

+4 −4
Original line number Diff line number Diff line
@@ -69,11 +69,11 @@ export async function* generateClasses(
): AsyncIterable<string> {
  runtimePath = runtimePath.replace(/\/+$/, "");
  yield "// deno-lint-ignore-file ban-unused-ignore\n";
  yield 'import { Temporal } from "npm:@js-temporal/polyfill@^0.4.4";\n';
  yield 'import jsonld from "npm:jsonld@8.3.2";\n';
  yield 'import { Temporal } from "@js-temporal/polyfill";\n';
  yield 'import jsonld from "jsonld";\n';
  yield `import { LanguageTag, parseLanguageTag }
    from "npm:@phensley/language-tag@1.8.0";\n`;
  yield `import { exportSPKI, importSPKI } from "npm:jose@5.2.2";\n`;
    from "@phensley/language-tag";\n`;
  yield `import { exportSPKI, importSPKI } from "jose";\n`;
  yield `import { DocumentLoader, fetchDocumentLoader }
    from "${runtimePath}/docloader.ts";\n`;
  yield `import { LanguageString } from "${runtimePath}/langstr.ts";\n`;
+1 −1
Original line number Diff line number Diff line
import { encodeBase58 } from "jsr:@std/encoding@^0.218.2/base58";
import { encodeBase58 } from "@std/encoding/base58";
import { PropertySchema, TypeSchema } from "./schema.ts";
import { areAllScalarTypes, getTypeNames } from "./type.ts";

+2 −2
Original line number Diff line number Diff line
import { join } from "jsr:@std/path@^0.218.2";
import { assertEquals } from "jsr:@std/assert@^0.218.2";
import { assertEquals } from "@std/assert";
import { join } from "@std/path";
import { toSet } from "https://deno.land/x/aitertools@0.5.0/mod.ts";
import { readDirRecursive } from "./fs.ts";

Loading