Skip to content

Commit 5268fd7

Browse files
committed
* Updates all dependencies
* Moved to tsdx project setup * Moved to yarn * Validator.tsx: Fixed typescript errors
1 parent 3ff0bbc commit 5268fd7

18 files changed

+12714
-12552
lines changed

.gitignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
.idea
2+
*.log
3+
.DS_Store
24
node_modules
3-
/dist
4-
git c
5+
.cache
6+
.rts2_cache_cjs
7+
.rts2_cache_esm
8+
.rts2_cache_umd
9+
dist
510
/HOW_TO_RELEASE.md

examples/formik/.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.cache
3+
dist

examples/formik/index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<title>Playground</title>
8+
</head>
9+
10+
<body>
11+
<div id="root"></div>
12+
<script src="./src/index.tsx"></script>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)