@ekz/formix 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ekz/formix",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Type-safe React form to be used with Typescript",
|
|
6
6
|
"homepage": "https://docs.ekz.io/formix/",
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"@testing-library/react": "^16.3.2",
|
|
50
50
|
"@testing-library/user-event": "^14.6.1",
|
|
51
51
|
"@types/jest": "^30.0.0",
|
|
52
|
-
"@types/node": "^25.9.
|
|
52
|
+
"@types/node": "^25.9.4",
|
|
53
53
|
"@types/react": "19.2.17",
|
|
54
|
-
"immutable": "^5.1.
|
|
54
|
+
"immutable": "^5.1.8",
|
|
55
55
|
"jest": "^30.4.2",
|
|
56
56
|
"jest-environment-jsdom": "^30.4.1",
|
|
57
57
|
"npm-run-all": "^4.1.5",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"compile:esm": "tsc -p ./src/main/web --outDir ./lib/esm",
|
|
69
69
|
"compile:cjs": "tsc -p ./src/main/web -m commonjs --verbatimModuleSyntax false --outDir ./lib/cjs",
|
|
70
70
|
"compile:esnext": "tsc -p ./src/main/web -t esnext --outDir ./lib/esnext",
|
|
71
|
+
"dev": "yarn compile:esm --watch",
|
|
71
72
|
"test": "yarn typecheck:tests && jest",
|
|
72
73
|
"typecheck:tests": "tsc -p tsconfig.test.json",
|
|
73
74
|
"prepublish": "yarn clean && yarn test --ci --no-watchman && yarn lint && yarn compile"
|