From 52e86b969825e21f2cb5fcf21bb0c1117211fa3e Mon Sep 17 00:00:00 2001 From: Simon Lecoq <22963968+lowlighter@users.noreply.github.com> Date: Wed, 1 Nov 2023 22:00:04 -0400 Subject: [PATCH] fix(deps): pin --- deno.lock | 3 ++- mod.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/deno.lock b/deno.lock index 71f6f45..851bf29 100644 --- a/deno.lock +++ b/deno.lock @@ -211,6 +211,7 @@ "https://esm.sh/v133/type-detect@4.0.8/denonext/type-detect.mjs": "deb58bd7203992249a5795f7da35d00b67077fe6c03019349cb614ba22ef52ad", "https://esm.sh/v133/zod-validation-error@1.5.0/denonext/zod-validation-error.mjs": "5668026e1c5e48df41677eb1c0bf1b7c66e0fd125c40934f37d32bf72610543a", "https://esm.sh/v133/zod@3.22.4/denonext/zod.mjs": "660128af5d1e921745c4d452472d103d9f2fc5afa508bbf233b83d35a272ad67", - "https://esm.sh/zod-validation-error@1.5.0": "78c876230174f315432e87ae4c761c2a833f2abddf0544a335ff5c80fdb42ddb" + "https://esm.sh/zod-validation-error@1.5.0": "78c876230174f315432e87ae4c761c2a833f2abddf0544a335ff5c80fdb42ddb", + "https://esm.sh/zod-validation-error@1.5.0?pin=v133": "78c876230174f315432e87ae4c761c2a833f2abddf0544a335ff5c80fdb42ddb" } } diff --git a/mod.ts b/mod.ts index 64964e7..4d49e8c 100644 --- a/mod.ts +++ b/mod.ts @@ -1,7 +1,7 @@ // Imports import * as JSONC from "https://deno.land/std@0.203.0/jsonc/mod.ts" import { z as is } from "https://deno.land/x/zod@v3.21.4/mod.ts" -import { fromZodError } from "https://esm.sh/zod-validation-error@1.5.0" +import { fromZodError } from "https://esm.sh/zod-validation-error@1.5.0?pin=v133" import { bgBrightBlue, bold, gray, italic, underline, yellow } from "https://deno.land/std@0.203.0/fmt/colors.ts" // Structure flags =========================================================================================================