Skip to content

Commit 2d6db33

Browse files
committed
update deps + tsgo compatibility
1 parent 33383a4 commit 2d6db33

File tree

11 files changed

+144
-142
lines changed

11 files changed

+144
-142
lines changed

code.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { DAY } from "@std/datetime/constants";
2-
import { z } from "@zod/zod";
2+
import { z } from "zod";
33

44
import { randomString } from "./random.ts";
55

deno.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"imports": {
33
"@deno/esbuild-plugin": "jsr:@deno/esbuild-plugin@^1.2.0",
4-
"@deno/import-map": "https://deno.land/x/import_map@v0.23.0/mod.ts",
4+
"@deno/import-map": "https://deno.land/x/import_map@v0.24.0/mod.ts",
55
"@std/datetime": "jsr:@std/datetime@^0.225.0",
66
"@std/encoding": "jsr:@std/encoding@^1.0.0",
77
"@std/fs": "jsr:@std/fs@^1.0.0",
88
"@std/http": "jsr:@std/http@^1.0.0",
99
"@std/media-types": "jsr:@std/media-types@^1.0.0",
1010
"@std/path": "jsr:@std/path@^1.0.0",
11-
"@zod/zod": "jsr:@zod/[email protected]",
12-
"esbuild": "npm:[email protected]",
11+
"esbuild": "npm:[email protected]",
1312
"hast-util-to-html": "npm:[email protected]",
14-
"hastscript": "npm:[email protected]"
13+
"hastscript": "npm:[email protected]",
14+
"zod": "jsr:@zod/[email protected]"
1515
},
1616
"exclude": [
1717
"static"

deno.lock

Lines changed: 76 additions & 76 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { STATUS_CODE } from "@std/http/status";
2-
import { ZodError, type ZodType } from "@zod/zod";
2+
import { ZodError, type ZodType } from "zod";
33

44
import { type Awaitable, settled } from "./async.ts";
55

static/deno.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
{
22
"imports": {
3-
"@codemirror/commands": "npm:@codemirror/commands@6.8.1",
3+
"@codemirror/commands": "npm:@codemirror/commands@6.10.0",
44
"@codemirror/state": "npm:@codemirror/[email protected]",
5-
"@codemirror/view": "npm:@codemirror/[email protected].2",
6-
"@primer/octicons-react": "npm:@primer/octicons-react@19.18.0",
5+
"@codemirror/view": "npm:@codemirror/[email protected].6",
6+
"@primer/octicons-react": "npm:@primer/octicons-react@19.19.0",
77
"@std/assert": "jsr:@std/assert@^1.0.0",
88
"@types/react": "npm:@types/react@19",
99
"@types/react-dom": "npm:@types/react-dom@19",
1010
"clsx": "npm:[email protected]",
1111
"floating-point-hex-parser": "./deps/floating_point_hex_parser.ts",
1212
"react": "./deps/react.ts",
13-
"react/": "npm:/react@19.1.1/",
14-
"react-dom": "npm:react-dom@19.1.1",
15-
"react-router": "npm:[email protected].1",
13+
"react/": "npm:/react@19.2.0/",
14+
"react-dom": "npm:react-dom@19.2.0",
15+
"react-router": "npm:[email protected].4",
1616
"use-latest": "./deps/use_latest.ts"
1717
},
18+
"compilerOptions": {
19+
"lib": [
20+
"es2024"
21+
]
22+
},
1823
"lint": {
1924
"rules": {
2025
"include": [

0 commit comments

Comments
 (0)