Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6124c59

Browse files
jorisrekotarella1110
andauthoredMar 31, 2025
feat: infer input/output types from schema (#753)
BREAKING CHANGE: * Requires react-hook-form@7.55.0 or higher --------- Co-authored-by: Kotaro Sugawara <kotarella1110@gmail.com>
1 parent ded1746 commit 6124c59

File tree

68 files changed

+1471
-581
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1471
-581
lines changed
 

‎.github/workflows/compressedSize.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ jobs:
1616
- uses: preactjs/compressed-size-action@v2
1717
with:
1818
repo-token: '${{ secrets.GITHUB_TOKEN }}'
19+
install-script: "bun install --frozen-lockfile"

‎.husky/pre-commit

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ call_lefthook()
3333
then
3434
"$dir/node_modules/lefthook/bin/index.js" "$@"
3535

36+
elif go tool lefthook -h >/dev/null 2>&1
37+
then
38+
go tool lefthook "$@"
3639
elif bundle exec lefthook -h >/dev/null 2>&1
3740
then
3841
bundle exec lefthook "$@"
@@ -42,9 +45,9 @@ call_lefthook()
4245
elif pnpm lefthook -h >/dev/null 2>&1
4346
then
4447
pnpm lefthook "$@"
45-
elif swift package plugin lefthook >/dev/null 2>&1
48+
elif swift package lefthook >/dev/null 2>&1
4649
then
47-
swift package --disable-sandbox plugin lefthook "$@"
50+
swift package --build-path .build/lefthook --disable-sandbox lefthook "$@"
4851
elif command -v mint >/dev/null 2>&1
4952
then
5053
mint run csjones/lefthook-plugin "$@"

0 commit comments

Comments
 (0)