Skip to content

Commit e5f99cf

Browse files
committed
Specify versions for zod packages
1 parent 1d3c3d8 commit e5f99cf

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

deno.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
"@std/path": "jsr:@std/path@1",
1919
"@libs/xml": "jsr:@libs/xml@^6.0.0",
2020
"deno-dom": "jsr:@b-fuze/[email protected]",
21-
"effection": "npm:[email protected]"
21+
"effection": "npm:[email protected]",
22+
"zod": "npm:zod@^3.20.0",
23+
"zod-opts": "npm:[email protected]"
2224
},
2325
"lint": {
2426
"rules": {

main.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { main } from "effection";
2-
import { parser } from "npm:zod-opts";
3-
import { z } from "npm:zod";
2+
import { parser } from "zod-opts";
3+
import { z } from "zod";
44
import { staticalize } from "./staticalize.ts";
55
import denoJson from "./deno.json" with { type: "json" };
66

@@ -41,4 +41,4 @@ await main(function* (args) {
4141
host: new URL(options.site),
4242
dir: options.output,
4343
});
44-
});
44+
});

0 commit comments

Comments
 (0)