@bolttech/form-engine 0.1.4 → 0.1.6

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/CHANGELOG.md CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.1.6](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.1.5...form-engine-0.1.6) (2023-07-31)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * rollback tsconfig to equalize with other projects ([4e8ffa7](http://bitbucket.org/gofrank/bolttech-frontend/commit/4e8ffa72fb969167995e2c55945584cd52f577ed))
11
+
12
+ ## [0.1.5](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.1.4...form-engine-0.1.5) (2023-07-31)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * update readme ([95695c4](http://bitbucket.org/gofrank/bolttech-frontend/commit/95695c472e548f2e76b0af29bf1082015ed86cd0))
18
+ * update tsconfig for build ([10987fa](http://bitbucket.org/gofrank/bolttech-frontend/commit/10987fa99d41d95863ed569441ed6601dbeaf5f0))
19
+
5
20
  ## [0.1.4](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.1.3...form-engine-0.1.4) (2023-07-31)
6
21
 
7
22
 
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Achieve form logic reusage with forms expressed in json format.
4
4
 
5
- > version 0.1.2
5
+ > version 0.1.6
6
6
 
7
7
  ---
8
8
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@bolttech/form-engine",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "A form engine based on form events for react projects",
5
- "type": "commonjs",
5
+ "type": "module",
6
6
  "exports": {
7
7
  ".": {
8
8
  "types": "./src/index.d.ts",
@@ -46,6 +46,7 @@
46
46
  "@bit/bolttech.components.ui.dropdown": "^1.0.59",
47
47
  "@bit/bolttech.components.ui.input": "0.0.20"
48
48
  },
49
- "main": "./index.cjs",
49
+ "module": "./index.js",
50
+ "main": "./index.js",
50
51
  "types": "./src/index.d.ts"
51
52
  }