Skip to content

Commit 9d08ab5

Browse files
committed
Update dependencies
1 parent a0756d7 commit 9d08ab5

File tree

5 files changed

+17
-15
lines changed

5 files changed

+17
-15
lines changed

cli.sh

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ check_all() {
1111
code_quality() {
1212
echo "Checking formatting..."
1313
deno fmt --check
14+
echo "Checking types..."
15+
"$0" check_all
1416
echo "Linting..."
1517
deno lint
1618
echo "Running eslint..."

deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@std/fs": "jsr:@std/fs@^1.0.3",
3838
"@std/path": "jsr:@std/path@^1.0.6",
3939
"@std/yaml": "jsr:@std/yaml@^1.0.5",
40-
"@wok/typebox": "jsr:@wok/typebox@^0.33.10",
41-
"@wok/utils": "jsr:@wok/utils@^2.1.6"
40+
"@wok/typebox": "jsr:@wok/typebox@^0.33.13",
41+
"@wok/utils": "jsr:@wok/utils@^3.0.0"
4242
}
4343
}

deno.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export async function loadInstanceConfig(
5959

6060
if (!instanceResult.isSuccess) {
6161
throw new Error(
62-
`Instance config is invalid. Reasons:\n${renderValidationErrors(instanceResult.errors)}`,
62+
`Instance config is invalid. Reasons:\n${renderValidationErrors([...instanceResult.errors])}`,
6363
);
6464
}
6565

0 commit comments

Comments
 (0)