@maif/react-forms 1.2.2 → 1.2.5-rc.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/lib/index.css +6168 -0
- package/lib/index.js +177 -28920
- package/package.json +3 -3
- package/lib/esm/index.js +0 -28871
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maif/react-forms",
|
|
3
3
|
"description": "Build react safe forms as fast as possible",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.5-rc.1",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
|
-
"module": "lib/esm/index.js",
|
|
7
6
|
"types": "lib/index.d.ts",
|
|
8
7
|
"source": "src/index.ts",
|
|
9
8
|
"author": "MAIF team",
|
|
@@ -32,7 +31,7 @@
|
|
|
32
31
|
"README.md"
|
|
33
32
|
],
|
|
34
33
|
"scripts": {
|
|
35
|
-
"build": "tsc --emitDeclarationOnly && rollup -c",
|
|
34
|
+
"build": "tsc --emitDeclarationOnly && NODE_ENV=production rollup -c",
|
|
36
35
|
"dev": "tsc --emitDeclarationOnly && rollup -c -w",
|
|
37
36
|
"test": "jest",
|
|
38
37
|
"tdd": "jest --watch"
|
|
@@ -100,6 +99,7 @@
|
|
|
100
99
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
101
100
|
"rollup-plugin-scss": "^3.0.0",
|
|
102
101
|
"rollup-plugin-terser": "^7.0.2",
|
|
102
|
+
"rollup-plugin-visualizer": "^5.6.0",
|
|
103
103
|
"sass": "^1.52.1",
|
|
104
104
|
"sinon": "^11.1.2",
|
|
105
105
|
"sinon-chai": "^3.7.0",
|