From f68c79824a4d707dfe11464212e904afd192e2f2 Mon Sep 17 00:00:00 2001 From: Zak Horton Date: Tue, 1 Oct 2024 11:22:04 -0700 Subject: [PATCH] Updated --- deno.json | 2 +- deno.lock | 12 ++++++++++-- mod.ts | 3 ++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/deno.json b/deno.json index 9a82a73..9d9162e 100644 --- a/deno.json +++ b/deno.json @@ -10,7 +10,7 @@ "test": "deno test --allow-all" }, "imports": { - "zod": "https://deno.land/x/zod@v3.21.4/mod.ts", + "zod": "npm:zod@3.21.4", "@std/": "jsr:@std/", "@std/async": "jsr:@std/async", "@std/assert": "jsr:@std/assert", diff --git a/deno.lock b/deno.lock index ce4a714..74debd0 100644 --- a/deno.lock +++ b/deno.lock @@ -4,7 +4,8 @@ "specifiers": { "jsr:@std/assert": "jsr:@std/assert@1.0.6", "jsr:@std/async": "jsr:@std/async@1.0.5", - "jsr:@std/internal@^1.0.4": "jsr:@std/internal@1.0.4" + "jsr:@std/internal@^1.0.4": "jsr:@std/internal@1.0.4", + "npm:zod@3.21.4": "npm:zod@3.21.4" }, "jsr": { "@std/assert@1.0.6": { @@ -19,6 +20,12 @@ "@std/internal@1.0.4": { "integrity": "62e8e4911527e5e4f307741a795c0b0a9e6958d0b3790716ae71ce085f755422" } + }, + "npm": { + "zod@3.21.4": { + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", + "dependencies": {} + } } }, "remote": { @@ -40,7 +47,8 @@ "dependencies": [ "jsr:@std/assert", "jsr:@std/async", - "jsr:@std/collections" + "jsr:@std/collections", + "npm:zod@3.21.4" ] } } diff --git a/mod.ts b/mod.ts index 7c8d69a..6f3a955 100644 --- a/mod.ts +++ b/mod.ts @@ -423,4 +423,5 @@ export class Container { } } -export { DIContainer } from "./dicontainer.ts"; \ No newline at end of file +export { z }; +export { DIContainer } from "./dicontainer.ts";