Skip to content

Commit

Permalink
Revision 0.34.2 (#1082)
Browse files Browse the repository at this point in the history
* Fix Import Path

* Version

* ChangeLog
  • Loading branch information
sinclairzx81 authored Nov 17, 2024
1 parent 56b760c commit b9cc4cd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelog/0.34.0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
### 0.34.0
- [Revision 0.34.1](https://github.com/sinclairzx81/typebox/pull/1080)
- Implement Computed Type Deref in Modules
- [Revision 0.34.2](https://github.com/sinclairzx81/typebox/pull/1082)
- Resolve import pathing issue introduced on 0.34.1

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

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sinclair/typebox",
"version": "0.34.1",
"version": "0.34.2",
"description": "Json Schema Type Builder with Static Type Resolution for TypeScript",
"keywords": [
"typescript",
Expand Down
2 changes: 1 addition & 1 deletion src/type/pick/pick.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import { TransformKind } from '../symbols/symbols'
// Guards
// ------------------------------------------------------------------
import { IsMappedKey, IsMappedResult, IsIntersect, IsUnion, IsObject, IsSchema, IsLiteralValue, IsRef } from '../guard/kind'
import { IsArray as IsArrayValue } from 'src/value/guard'
import { IsArray as IsArrayValue } from '../guard/value'

// ------------------------------------------------------------------
// Infrastructure
Expand Down
2 changes: 1 addition & 1 deletion src/value/clean/clean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { Kind } from '../../type/symbols/index'

import type { TSchema } from '../../type/schema/index'
import type { TArray } from '../../type/array/index'
import type { TImport } from 'src/type/module/index'
import type { TImport } from '../../type/module/index'
import type { TIntersect } from '../../type/intersect/index'
import type { TObject } from '../../type/object/index'
import type { TRecord } from '../../type/record/index'
Expand Down

0 comments on commit b9cc4cd

Please sign in to comment.