Skip to content

Commit 5a54314

Browse files
authored
Revision 0.34.33 (#1220)
* Fix Import Specifier * ChangeLog * Version
1 parent f958156 commit 5a54314

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

changelog/0.34.0.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
---
44

55
### Revision Updates
6+
- [Revision 0.34.33](https://github.com/sinclairzx81/typebox/pull/1220)
7+
- Hotfix: Correct Invalid Import Specifier
68
- [Revision 0.34.32](https://github.com/sinclairzx81/typebox/pull/1218)
79
- Accelerated | High Performance Syntax Parsing
810
- [Revision 0.34.31](https://github.com/sinclairzx81/typebox/pull/1209)

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sinclair/typebox",
3-
"version": "0.34.32",
3+
"version": "0.34.33",
44
"description": "Json Schema Type Builder with Static Type Resolution for TypeScript",
55
"keywords": [
66
"typescript",

src/syntax/mapping.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ THE SOFTWARE.
2626
2727
---------------------------------------------------------------------------*/
2828

29-
import * as T from '@sinclair/typebox'
29+
import * as T from '../type/index'
3030

3131
// ------------------------------------------------------------------
3232
//

src/syntax/syntax.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ THE SOFTWARE.
2626
2727
---------------------------------------------------------------------------*/
2828

29-
import * as t from '@sinclair/typebox'
29+
import * as t from '../type/index'
3030
import { Type, TType } from './parser'
3131

3232
// ------------------------------------------------------------------

0 commit comments

Comments
 (0)