Skip to content

Commit

Permalink
full rewrite to use zod under the hood
Browse files Browse the repository at this point in the history
  • Loading branch information
robinweser committed Jun 3, 2024
1 parent f5cf653 commit 1a57c89
Show file tree
Hide file tree
Showing 25 changed files with 3,651 additions and 13,535 deletions.
7 changes: 6 additions & 1 deletion packages/react-controlled-form/.babelrc → .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
"@babel/preset-react"
],
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
},
"commonjs": {
"presets": [
[
Expand All @@ -21,4 +26,4 @@
]
}
}
}
}
15 changes: 12 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,23 @@ Thumbs.db
*.orig
*.pyc
*.rej
*.vsix

*.sass-cache
*.sw?
*.vi

yarn.lock

.merlin
node_modules
**/build
coverage
lib
es
_book
types
coverage
dist
.next
.vercel
out
.vscode
.turbo
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
strict-peer-dependencies=false
64 changes: 11 additions & 53 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,5 @@
{
"search.exclude": {
"# OS or Editor files": true,
"._*": true,
".DS_Store": true,
"Thumbs.db": true,
"# Files that might appear on external disks": true,
".Spotlight-V100": true,
".Trashes": true,
"# Always-ignore extensions": true,
"*~": true,
"*.diff": true,
"*.err": true,
"*.log": true,
"*.orig": true,
"*.pyc": true,
"*.rej": true,
"*.sass-cache": true,
"*.sw?": true,
"*.vi": true,
"node_modules": true,
"coverage": true,
"lib": true,
"es": true,
"_book": true
},
"files.exclude": {
"# OS or Editor files": true,
"._*": true,
".DS_Store": true,
"Thumbs.db": true,
"# Files that might appear on external disks": true,
".Spotlight-V100": true,
".Trashes": true,
"# Always-ignore extensions": true,
"*~": true,
"*.diff": true,
"*.err": true,
"*.log": true,
"*.orig": true,
"*.pyc": true,
"*.rej": true,
"*.sass-cache": true,
"*.sw?": true,
"*.vi": true,
"node_modules": true,
"coverage": true,
"lib": true,
"es": true,
"_book": true,
"**/._*": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
Expand All @@ -60,15 +12,21 @@
"**/*.orig": true,
"**/*.pyc": true,
"**/*.rej": true,
"**/*.vsix": true,
"**/*.sass-cache": true,
"**/*.sw?": true,
"**/*.vi": true,
"**/yarn.lock": true,
"**/.merlin": true,
"**/node_modules": true,
"**/build": true,
"**/coverage": true,
"**/lib": true,
"**/es": true,
"**/_book": true,
"**/.next": true
"**/coverage": true,
"**/dist": true,
"**/.next": true,
"**/.vercel": true,
"**/out": true,
"**/.vscode": true,
"**/.turbo": true
}
}
}
119 changes: 0 additions & 119 deletions Changelog.md

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

Loading

0 comments on commit 1a57c89

Please sign in to comment.