Skip to content

Commit 2c124d7

Browse files
authored
Add Standard Schema support (#67)
* Add support for Standard Schema * Add deferred version * Update CHANGELOG.md * Add exports for standard-schema * Fix import * Ignore built standard-schema * Exclude standard-schema directory * Update README.md * Rename standard schema spec file * Update README.md * Fix import
1 parent 390d87b commit 2c124d7

17 files changed

+227
-20
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
lib/*
2+
standard-schema/*
23
zod/*
34
yup/*
45
src/**/*.cts

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
# Compiled code
1111
lib/*
12+
standard-schema/*
1213
zod/*
1314
yup/*
1415
src/**/*.cts

.idea/react-router-typesafe-routes.iml

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

.pnp.cjs

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

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.yarn/*
22
.pnp.*
33
lib/*
4+
standard-schema/*
45
zod/*
56
yup/*
67
src/**/*.cts
-110 KB
Binary file not shown.
401 KB
Binary file not shown.

.yarn/versions/f47e780a.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
releases:
2-
react-router-typesafe-routes: patch
2+
react-router-typesafe-routes: minor

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
### Added
11+
12+
- Add support for [Standard Schema](https://github.com/standard-schema/standard-schema).
13+
814
## [2.0.0] - 2024-11-23
915

1016
### Added

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
All code changes have to be done via pull requests to `dev` branch.
99

10-
Every pull request have to specify a deferred version bump via [yarn version](https://yarnpkg.com/cli/version) like this:
10+
Every pull request has to specify a deferred version bump via [yarn version](https://yarnpkg.com/cli/version) like this:
1111

1212
```bash
1313
yarn version patch --deferred

0 commit comments

Comments
 (0)