Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces the use of the
_createStandardSchema
utility to wrap validation functions, enhancing standardization and consistency across the codebase. It also includes updates to the test files to integrate this utility and adds a new debug test for validation functionality.Integration of
_createStandardSchema
:_createStandardSchema
insrc/internal/_createStandardSchema.ts
to includeStandardSchemaV1
, enabling schema standardization.Updates to generated test files:
test/generate/output/generate_index.ts
andtest/generate/output/generate_plain.ts
to import_createStandardSchema
and apply it to validation functions (validate
,validateEquals
,createValidate
,createValidateEquals
). These changes ensure that all validation functions are wrapped with the standardized schema utility. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]New debug test:
test/src/debug/standard-schema.ts
to validate the functionality of_createStandardSchema
by testing a simple validation case for a number.