Fork from @sinclair/typebox 0.34.49 as @alkdev/typebox
- Rename package from @sinclair/typebox to @alkdev/typebox - Update author, repository, and homepage to alkdev - Remove GitHub workflows, .vscode config, and branding assets - Update all source, test, example, changelog, and task imports - Update tsconfig.json path mappings - Clean up readme header (remove upstream badges/branding)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
|
||||
describe('compiler-ajv/Any', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Array', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Boolean', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Assert } from '../assert'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
|
||||
describe('compiler-ajv/Const', () => {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// No Longer Supported
|
||||
// ---------------------------------------------------
|
||||
|
||||
// import { Type } from '@sinclair/typebox'
|
||||
// import { Type } from '@alkdev/typebox'
|
||||
// import { Ok, Fail } from './validate'
|
||||
|
||||
// ----------------------------------------------------
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Enum', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Integer', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type, Static } from '@sinclair/typebox'
|
||||
import { Type, Static } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Intersect', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/KeyOf', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Literal', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Module', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Never', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Not', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Null', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Number', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Object', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { strictEqual } from 'assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { strictEqual } from 'assert'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
|
||||
describe('compiler-ajv/Optional', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type, ReadonlyKind, OptionalKind } from '@sinclair/typebox'
|
||||
import { Type, ReadonlyKind, OptionalKind } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
import { Assert } from '../assert'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { Assert } from '../assert'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
import { Assert } from '../assert'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
import { Assert } from '../assert'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Record', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { Assert } from '../assert/index'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Ref', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type, ReadonlyKind, OptionalKind } from '@sinclair/typebox'
|
||||
import { Type, ReadonlyKind, OptionalKind } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { Assert } from '../assert'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/StringPattern', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/String', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/TemplateLiteral', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Tuple', () => {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// ---------------------------------------------------
|
||||
// No Longer Supported
|
||||
// ---------------------------------------------------
|
||||
// import { Type } from '@sinclair/typebox'
|
||||
// import { Type } from '@alkdev/typebox'
|
||||
// import { Ok, Fail } from './validate'
|
||||
// describe('compiler-ajv/Uint8Array', () => {
|
||||
// it('Should not validate number', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Union', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
|
||||
describe('compiler-ajv/Unknown', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Unsafe', () => {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { TypeGuard } from '@sinclair/typebox'
|
||||
import { Value } from '@sinclair/typebox/value'
|
||||
import { TypeGuard } from '@alkdev/typebox'
|
||||
import { Value } from '@alkdev/typebox/value'
|
||||
|
||||
import { TSchema } from '@sinclair/typebox'
|
||||
import { TSchema } from '@alkdev/typebox'
|
||||
import addFormats from 'ajv-formats'
|
||||
import Ajv, { AnySchema } from 'ajv/dist/2019'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler-ajv/Void', () => {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { TypeCompiler } from '@sinclair/typebox/compiler'
|
||||
import { Type, TypeGuard, ValueGuard } from '@sinclair/typebox'
|
||||
import { TypeCompiler } from '@alkdev/typebox/compiler'
|
||||
import { Type, TypeGuard, ValueGuard } from '@alkdev/typebox'
|
||||
import { Assert } from '../assert/index'
|
||||
|
||||
describe('compiler/TypeCheckMembers', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
|
||||
describe('compiler/Any', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
|
||||
describe('compiler/Argument', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Array', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/AsyncIterator', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/BigInt', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Boolean', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Composite', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
|
||||
describe('compiler/Const', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Constructor', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Date', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Enum', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Function', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Integer', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Intersect', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Iterator', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/KeyOf', () => {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { TypeRegistry, Type, Kind, TSchema } from '@sinclair/typebox'
|
||||
import { TypeCompiler } from '@sinclair/typebox/compiler'
|
||||
import { TypeRegistry, Type, Kind, TSchema } from '@alkdev/typebox'
|
||||
import { TypeCompiler } from '@alkdev/typebox/compiler'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { Assert } from '../assert'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Literal', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Module', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Fail } from './validate'
|
||||
|
||||
describe('compiler/Never', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Not', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Null', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Number', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Object', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type, Kind } from '@sinclair/typebox'
|
||||
import { Type, Kind } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { deepEqual, strictEqual } from 'assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { strictEqual } from 'assert'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
|
||||
describe('compiler/Optional', () => {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { TypeSystem } from '@sinclair/typebox/system'
|
||||
import { Type, OptionalKind, ReadonlyKind } from '@sinclair/typebox'
|
||||
import { TypeSystem } from '@alkdev/typebox/system'
|
||||
import { Type, OptionalKind, ReadonlyKind } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { strictEqual } from 'assert'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { strictEqual } from 'assert'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { strictEqual } from 'assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { deepStrictEqual, strictEqual } from 'assert'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Readonly', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Record', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Assert } from '../assert/index'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { Assert } from '../assert/index'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/RegExp', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type, ReadonlyKind, OptionalKind } from '@sinclair/typebox'
|
||||
import { Type, ReadonlyKind, OptionalKind } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
import { strictEqual } from 'assert'
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/StringPattern', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/String', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Symbol', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/TemplateLiteral', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Tuple', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Uint8Array', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
|
||||
describe('compiler/Unicode', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Union', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok } from './validate'
|
||||
|
||||
describe('compiler/Unknown', () => {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { TypeCompiler } from '@sinclair/typebox/compiler'
|
||||
import { Value } from '@sinclair/typebox/value'
|
||||
import { TSchema, FormatRegistry } from '@sinclair/typebox'
|
||||
import { TypeCompiler } from '@alkdev/typebox/compiler'
|
||||
import { Value } from '@alkdev/typebox/value'
|
||||
import { TSchema, FormatRegistry } from '@alkdev/typebox'
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Test Formats: https://github.com/ajv-validator/ajv-formats/blob/master/src/formats.ts
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Ok, Fail } from './validate'
|
||||
|
||||
describe('compiler/Void', () => {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Errors } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { Errors } from '@alkdev/typebox/errors'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
describe('errors/ValueErrorIterator', () => {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { ValueErrorType } from '@sinclair/typebox/errors'
|
||||
import { Type } from '@alkdev/typebox'
|
||||
import { ValueErrorType } from '@alkdev/typebox/errors'
|
||||
import { Resolve } from './resolve'
|
||||
import { Assert } from '../../assert'
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user