@websolutespa/bom-mixer-forms 0.0.2 → 0.2.0

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
@@ -1,7 +1,19 @@
1
- # @websolutespa/bom-mixer-forms
2
-
3
- ## 0.0.2
4
-
5
- ### Patch Changes
6
-
7
- - Added: first release.
1
+ # @websolutespa/bom-mixer-forms
2
+
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Added: splat routes.
8
+
9
+ ## 0.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - Added: @websolutespa/bom-core.
14
+
15
+ ## 0.0.2
16
+
17
+ ### Patch Changes
18
+
19
+ - Added: first release.
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { IEquatable, IOption } from '@websolutespa/bom-mixer-core';
1
+ import { IEquatable, IOption } from '@websolutespa/bom-core';
2
2
  import { DependencyList } from 'react';
3
3
 
4
4
  declare class EventEmitter {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@websolutespa/bom-mixer-forms",
3
- "version": "0.0.2",
4
- "description": "",
3
+ "version": "0.2.0",
4
+ "description": "Mixer Forms module of the BOM Repository",
5
5
  "keywords": [
6
6
  "bom",
7
7
  "mixer",
@@ -12,34 +12,22 @@
12
12
  "type": "git",
13
13
  "url": "git://github.com/websolutespa/bom.git"
14
14
  },
15
- "prepack": {
16
- "types": "./dist/index.d.ts",
17
- "main": "./dist/index.js"
18
- },
19
- "postpack": {
20
- "types": "./src/index.ts",
21
- "main": "./src/index.ts"
22
- },
23
- "sideEffects": false,
24
- "publishConfig": {
25
- "access": "public"
26
- },
27
15
  "scripts": {
28
- "build": "tsup ./src/index.ts --format esm,cjs --dts --external react",
29
16
  "lint": "eslint *.ts*",
30
17
  "test": "jest",
31
18
  "test-watch": "npm test -- --watch",
32
19
  "coverage:integration": "npm run test -- --coverage",
33
20
  "coverage": "run-s -c --silent coverage:*",
34
- "coverage-open": "open-cli coverage/lcov-report/index.html",
21
+ "compile": "tsup ./src/index.ts --format esm,cjs --dts --external react",
35
22
  "prepack": "bom prepack",
36
23
  "postpack": "bom postpack"
37
24
  },
38
- "dependencies": {
39
- "@websolutespa/bom-mixer-core": "*",
25
+ "dependencies": {},
26
+ "peerDependencies": {
27
+ "@websolutespa/bom-core": "*",
40
28
  "@websolutespa/bom-mixer-hooks": "*",
41
- "styled-components": "^5.3.5",
42
- "react": "^18.2.0"
29
+ "styled-components": ">= 5.3.5",
30
+ "react": ">= 18.2.0"
43
31
  },
44
32
  "devDependencies": {
45
33
  "@types/react": "^18.0.18",
@@ -48,13 +36,27 @@
48
36
  "@websolutespa/bom-cli": "*",
49
37
  "@websolutespa/test": "*",
50
38
  "@websolutespa/tsconfig": "*",
51
- "eslint": "^8.23.0",
39
+ "eslint": "^8.36.0",
52
40
  "eslint-config-websolute": "*",
53
41
  "raw-loader": "^4.0.2",
54
42
  "ts-node": "^10.9.1",
55
- "tsup": "^6.6.3",
56
- "typescript": "^4.8.2"
43
+ "tsup": "^6.7.0",
44
+ "typescript": "^4.8.4"
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "sideEffects": false,
50
+ "prepack": {
51
+ "types": "./dist/index.d.ts",
52
+ "main": "./dist/index.js",
53
+ "module": "./dist/index.mjs"
54
+ },
55
+ "postpack": {
56
+ "types": "./src/index.ts",
57
+ "main": "./src/index.ts"
57
58
  },
58
59
  "types": "./dist/index.d.ts",
59
- "main": "./dist/index.js"
60
+ "main": "./dist/index.js",
61
+ "module": "./dist/index.mjs"
60
62
  }