Skip to content

Commit 1a57c89

Browse files
committed
full rewrite to use zod under the hood
1 parent f5cf653 commit 1a57c89

25 files changed

+3651
-13535
lines changed

packages/react-controlled-form/.babelrc renamed to .babelrc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"@babel/preset-react"
1010
],
1111
"env": {
12+
"test": {
13+
"plugins": [
14+
"@babel/plugin-transform-modules-commonjs"
15+
]
16+
},
1217
"commonjs": {
1318
"presets": [
1419
[
@@ -21,4 +26,4 @@
2126
]
2227
}
2328
}
24-
}
29+
}

.gitignore

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,23 @@ Thumbs.db
1515
*.orig
1616
*.pyc
1717
*.rej
18+
*.vsix
19+
1820
*.sass-cache
1921
*.sw?
2022
*.vi
2123

24+
yarn.lock
25+
26+
.merlin
2227
node_modules
23-
**/build
24-
coverage
2528
lib
2629
es
27-
_book
30+
types
31+
coverage
32+
dist
2833
.next
34+
.vercel
35+
out
36+
.vscode
37+
.turbo

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
strict-peer-dependencies=false

.vscode/settings.json

Lines changed: 11 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,5 @@
11
{
2-
"search.exclude": {
3-
"# OS or Editor files": true,
4-
"._*": true,
5-
".DS_Store": true,
6-
"Thumbs.db": true,
7-
"# Files that might appear on external disks": true,
8-
".Spotlight-V100": true,
9-
".Trashes": true,
10-
"# Always-ignore extensions": true,
11-
"*~": true,
12-
"*.diff": true,
13-
"*.err": true,
14-
"*.log": true,
15-
"*.orig": true,
16-
"*.pyc": true,
17-
"*.rej": true,
18-
"*.sass-cache": true,
19-
"*.sw?": true,
20-
"*.vi": true,
21-
"node_modules": true,
22-
"coverage": true,
23-
"lib": true,
24-
"es": true,
25-
"_book": true
26-
},
272
"files.exclude": {
28-
"# OS or Editor files": true,
29-
"._*": true,
30-
".DS_Store": true,
31-
"Thumbs.db": true,
32-
"# Files that might appear on external disks": true,
33-
".Spotlight-V100": true,
34-
".Trashes": true,
35-
"# Always-ignore extensions": true,
36-
"*~": true,
37-
"*.diff": true,
38-
"*.err": true,
39-
"*.log": true,
40-
"*.orig": true,
41-
"*.pyc": true,
42-
"*.rej": true,
43-
"*.sass-cache": true,
44-
"*.sw?": true,
45-
"*.vi": true,
46-
"node_modules": true,
47-
"coverage": true,
48-
"lib": true,
49-
"es": true,
50-
"_book": true,
513
"**/._*": true,
524
"**/.DS_Store": true,
535
"**/Thumbs.db": true,
@@ -60,15 +12,21 @@
6012
"**/*.orig": true,
6113
"**/*.pyc": true,
6214
"**/*.rej": true,
15+
"**/*.vsix": true,
6316
"**/*.sass-cache": true,
6417
"**/*.sw?": true,
6518
"**/*.vi": true,
19+
"**/yarn.lock": true,
20+
"**/.merlin": true,
6621
"**/node_modules": true,
67-
"**/build": true,
68-
"**/coverage": true,
6922
"**/lib": true,
7023
"**/es": true,
71-
"**/_book": true,
72-
"**/.next": true
24+
"**/coverage": true,
25+
"**/dist": true,
26+
"**/.next": true,
27+
"**/.vercel": true,
28+
"**/out": true,
29+
"**/.vscode": true,
30+
"**/.turbo": true
7331
}
74-
}
32+
}

Changelog.md

Lines changed: 0 additions & 119 deletions
This file was deleted.

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)