Skip to content

Commit

Permalink
wip: defeat
Browse files Browse the repository at this point in the history
  • Loading branch information
Yohe-Am committed Jan 22, 2025
1 parent 2383b82 commit 456629b
Show file tree
Hide file tree
Showing 6 changed files with 4,040 additions and 44 deletions.
4,071 changes: 4,035 additions & 36 deletions deno.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"@std/path": "jsr:@std/path@^1.0.2",
"@std/path/": "jsr:/@std/path@^1.0.2/",
"@std/uuid": "jsr:@std/uuid@^1.0.1",
"aws-sdk/client-s3": "https://esm.sh/@aws-sdk/client-s3@3.723.0?pin=v135",
"aws-sdk/lib-storage": "https://esm.sh/@aws-sdk/lib-storage@3.723.0?pin=v135",
"aws-sdk/s3-request-presigner": "https://esm.sh/@aws-sdk/s3-request-presigner@3.723.0?pin=v135",
"aws-sdk/client-s3": "npm:@aws-sdk/client-s3@3.732.0",
"aws-sdk/lib-storage": "npm:@aws-sdk/lib-storage@3.732.0",
"aws-sdk/s3-request-presigner": "npm:@aws-sdk/s3-request-presigner@3.732.0",
"dispose": "https://deno.land/x/[email protected]/mod.ts",
"graphql": "npm:[email protected]",
"jwt": "https://deno.land/x/[email protected]/mod.ts",
Expand Down
1 change: 0 additions & 1 deletion src/typegate/src/transports/graphql/typegraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import type { TypeGraphDS } from "../../typegraph/mod.ts";
import type { ObjectNode } from "../../typegraph/type_node.ts";
import { Type } from "../../typegraph/type_node.ts";
import { PolicyIndices } from "../../typegraph/types.ts";
import { addNode } from "./utils.ts";

Expand Down
3 changes: 1 addition & 2 deletions src/typegate/src/typegraph/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import { TypeGraph, type TypeGraphDS } from "../typegraph/mod.ts";
import { globalConfig } from "../config.ts";
import * as semver from "@std/semver";
import { ObjectNode, Type } from "./type_node.ts";

const typegraphVersion = "0.0.4";

Expand Down Expand Up @@ -41,7 +40,7 @@ const typegraphChangelog: Record<
},
"0.0.3": {
"next": "0.0.4",
"transform": (x) => {
"transform": (_x) => {
throw new Error(
"upgrade not allowed; please rerun the typegate with the SYNC_FORCE_REMOVE=true environment variable",
);
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/published/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { projectDir } from "@local/tools/utils.ts";
import { download } from "download";
import { Untar } from "@std/archive/untar";
import { copy } from "@std/io/copy";
import { encodeBase64 } from "@std/encoding/base64";
import { readerFromStreamReader } from "@std/io/reader-from-stream-reader";

const tempDir = $.path(projectDir).join("tmp");
Expand Down
2 changes: 1 addition & 1 deletion tools/jsr/jsr-gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: MPL-2.0

import { CURRENT_VERSION, SDK_PACKAGE_NAME_TS } from "../consts.ts";
import { $, existsSync, expandGlob, join } from "../deps.ts";
import { $, expandGlob, join } from "../deps.ts";
import { copyFilesAt } from "../utils.ts";
import { removeExtension } from "../utils.ts";
import { denoSdkDir, fromRoot, srcDir } from "./common.ts";
Expand Down

0 comments on commit 456629b

Please sign in to comment.