Skip to content

Commit

Permalink
Revision 0.27.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sinclairzx81 committed Apr 12, 2023
1 parent d8effff commit d4e6760
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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.27.3",
"version": "0.27.4",
"description": "JSONSchema Type Builder with Static Type Resolution for TypeScript",
"keywords": [
"typescript",
Expand Down
4 changes: 2 additions & 2 deletions test/runtime/compiler/object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ describe('type/compiler/Object', () => {
'node-mirror:release:1': Type.Optional(Type.Literal(6)), // issue: 356
'node-mirror:release:2': Type.Union([Type.Literal(7), Type.Undefined()]), // key known
"a'a": Type.Literal(8),
"@onlyAtSymbol": Type.Literal(9)
'@onlyAtSymbol': Type.Literal(9),
})
Ok(T, {
'with-hyphen': 1,
Expand All @@ -147,7 +147,7 @@ describe('type/compiler/Object', () => {
'node-mirror:release:1': 6,
'node-mirror:release:2': 7,
"a'a": 8,
"@onlyAtSymbol": 9
'@onlyAtSymbol': 9,
})
})
it('Should validate schema additional properties of string', () => {
Expand Down

0 comments on commit d4e6760

Please sign in to comment.