Skip to content

Commit 9c1fd4d

Browse files
committed
ChangeLog
1 parent 168682a commit 9c1fd4d

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

changelog/1.1.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
---
44

55
### Version Updates
6-
- [Revision 1.1.34](https://github.com/sinclairzx81/typebox/pull/1587)
7-
- Conventionalize Interior Module Paths to Underscore
6+
- [Revision 1.1.34](https://github.com/sinclairzx81/typebox/pull/1588)
7+
- Interior Module Paths to Use Snake Case (Underscore)
88
- [Revision 1.1.33](https://github.com/sinclairzx81/typebox/pull/1587)
99
- Enforce VerbatimModuleSyntax
1010
- TakeLeft on Parameter Distribution

example/mcp/mcp.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ THE SOFTWARE.
2828

2929
import { type Static } from 'typebox'
3030

31-
import _2024_11_05 from './2024_11_05.json' with { type: 'json' }
32-
import _2025_03_26 from './2025_03_26.json' with { type: 'json' }
33-
import _2025_06_18 from './2025_06_18.json' with { type: 'json' }
31+
import _2024_11_05 from './2024-11-05.json' with { type: 'json' }
32+
import _2025_03_26 from './2025-03-26.json' with { type: 'json' }
33+
import _2025_06_18 from './2025-06-18.json' with { type: 'json' }
3434
import _Draft from './draft.json' with { type: 'json' }
3535
type AutoSpec<Defs extends string, Spec extends { [_ in Defs]: Record<string, unknown> }> = {
3636
[Key in Extract<keyof Spec[Defs], string>]: Static<Spec & { $ref: `#/${Defs}/${Key}` }>

0 commit comments

Comments
 (0)