Skip to content

Commit b9cc4cd

Browse files
authored
Revision 0.34.2 (#1082)
* Fix Import Path * Version * ChangeLog
1 parent 56b760c commit b9cc4cd

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

changelog/0.34.0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
### 0.34.0
22
- [Revision 0.34.1](https://github.com/sinclairzx81/typebox/pull/1080)
33
- Implement Computed Type Deref in Modules
4+
- [Revision 0.34.2](https://github.com/sinclairzx81/typebox/pull/1082)
5+
- Resolve import pathing issue introduced on 0.34.1
46

57
## [0.34.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.34.0)
68

package-lock.json

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

package.json

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

src/type/pick/pick.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import { TransformKind } from '../symbols/symbols'
4545
// Guards
4646
// ------------------------------------------------------------------
4747
import { IsMappedKey, IsMappedResult, IsIntersect, IsUnion, IsObject, IsSchema, IsLiteralValue, IsRef } from '../guard/kind'
48-
import { IsArray as IsArrayValue } from 'src/value/guard'
48+
import { IsArray as IsArrayValue } from '../guard/value'
4949

5050
// ------------------------------------------------------------------
5151
// Infrastructure

src/value/clean/clean.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { Kind } from '../../type/symbols/index'
3434

3535
import type { TSchema } from '../../type/schema/index'
3636
import type { TArray } from '../../type/array/index'
37-
import type { TImport } from 'src/type/module/index'
37+
import type { TImport } from '../../type/module/index'
3838
import type { TIntersect } from '../../type/intersect/index'
3939
import type { TObject } from '../../type/object/index'
4040
import type { TRecord } from '../../type/record/index'

0 commit comments

Comments
 (0)