Skip to content

Commit

Permalink
feat: file hashing for reusing builds
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Mar 6, 2024
1 parent fc629fe commit bb622bc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/build/deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export { crypto } from "https://deno.land/std@0.208.0/crypto/mod.ts";
export { encodeHex } from "https://deno.land/std@0.208.0/encoding/hex.ts";
export * as tjs from "npm:typescript-json-schema@^0.62.0";
2 changes: 1 addition & 1 deletion src/build/mod.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assertExists, exists, join } from "../deps.ts";
import { crypto, encodeHex, tjs } from "./deps.ts";
import { crypto, encodeHex } from "./deps.ts";
import { compileSchema } from "./schema.ts";
import { generateEntrypoint } from "./entrypoint.ts";
import { generateOpenApi } from "./openapi.ts";
Expand Down

0 comments on commit bb622bc

Please sign in to comment.