Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [20.x, 22.16]
node-version: [20.x, 24.x]

services:
postgres:
Expand Down
2 changes: 1 addition & 1 deletion .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"timeout": 30000,
"timeout": 60000,
"require": ["source-map-support/register"],
"reporter": "Dot",
"extension": ".test.ts",
Expand Down
6 changes: 3 additions & 3 deletions docs/api/schema/typebox.md
Original file line number Diff line number Diff line change
Expand Up @@ -1460,11 +1460,11 @@ In addition to JSON schema types, TypeBox provides several extended types that a

#### Extended Configuration

Utilities in this section require updating `src/schemas/validators.ts` to the Extended Ajv Configuration, as shown here:
Utilities in this section require updating `src/schemas/validators.ts` to the Extended Ajv Configuration, as shown here:

```ts
import { TypeGuard } from '@sinclair/typebox'
import { Value } from '@sinclair/typebox/value'
import { TypeGuard } from 'typebox'
import { Value } from 'typebox/value'
import addFormats from 'ajv-formats'
import type { Options } from 'ajv'
import Ajv from 'ajv'
Expand Down
Loading
Loading