@decaf-ts/ui-decorators 0.6.16 → 0.6.17

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.
@@ -13,4 +13,4 @@ export * from "./ui";
13
13
  * @const VERSION
14
14
  * @memberOf module:ui-decorators
15
15
  */
16
- export declare const VERSION = "0.6.15";
16
+ export declare const VERSION = "0.6.16";
package/lib/esm/index.js CHANGED
@@ -13,5 +13,5 @@ export * from "./ui/index.js";
13
13
  * @const VERSION
14
14
  * @memberOf module:ui-decorators
15
15
  */
16
- export const VERSION = "0.6.15";
16
+ export const VERSION = "0.6.16";
17
17
  //# sourceMappingURL=index.js.map
package/lib/index.cjs CHANGED
@@ -30,5 +30,5 @@ __exportStar(require("./ui/index.cjs"), exports);
30
30
  * @const VERSION
31
31
  * @memberOf module:ui-decorators
32
32
  */
33
- exports.VERSION = "0.6.15";
33
+ exports.VERSION = "0.6.16";
34
34
  //# sourceMappingURL=index.js.map
package/lib/index.d.ts CHANGED
@@ -13,4 +13,4 @@ export * from "./ui";
13
13
  * @const VERSION
14
14
  * @memberOf module:ui-decorators
15
15
  */
16
- export declare const VERSION = "0.6.15";
16
+ export declare const VERSION = "0.6.16";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/ui-decorators",
3
- "version": "0.6.16",
3
+ "version": "0.6.17",
4
4
  "description": "Extension of decorator validation to ui elements to allow for web integration",
5
5
  "type": "module",
6
6
  "exports": {
@@ -20,11 +20,11 @@
20
20
  "build": "npx build-scripts --dev",
21
21
  "build:prod": "npx build-scripts --prod",
22
22
  "test": "jest --runInBand --coverage --detectOpenHandles",
23
- "test:unit": "jest --testPathPattern=\"/tests/unit\" --passWithNoTests --detectOpenHandles",
24
- "test:integration": "jest --testPathPattern=\"/tests/(integration)\" --passWithNoTests --detectOpenHandles",
25
- "test:all": "jest --testPathPattern=\"/tests\" --passWithNoTests --detectOpenHandles",
23
+ "test:unit": "jest --testPathPatterns=\"/tests/unit\" --passWithNoTests --detectOpenHandles",
24
+ "test:integration": "jest --testPathPatterns=\"/tests/(integration)\" --passWithNoTests --detectOpenHandles",
25
+ "test:all": "jest --testPathPatterns=\"/tests\" --passWithNoTests --detectOpenHandles",
26
26
  "test:circular": "dpdm -T --no-warning --no-tree ./src/index.ts",
27
- "coverage": "rimraf ./workdocs/reports/data/*.json && npm run test:all -- --coverage --config=./workdocs/reports/jest.coverage.config.ts",
27
+ "coverage": "rimraf ./workdocs/reports/data/*.json && npm run test:all -- --coverage --config=./workdocs/reports/jest.coverage.config.cjs",
28
28
  "lint": "eslint .",
29
29
  "lint-fix": "eslint --fix .",
30
30
  "prepare-pr": "npm run lint-fix && npm run build:prod && npm run coverage && npm run docs",
@@ -85,11 +85,16 @@
85
85
  "homepage": "https://github.com/decaf-ts/ui-decorators#readme",
86
86
  "devDependencies": {
87
87
  "@decaf-ts/logging": "latest",
88
- "@decaf-ts/utils": "latest"
88
+ "@decaf-ts/utils": "latest",
89
+ "@types/jest": "^30.0.0"
89
90
  },
90
91
  "dependencies": {
91
92
  "@decaf-ts/db-decorators": "latest",
92
93
  "@decaf-ts/decoration": "latest",
93
94
  "@decaf-ts/decorator-validation": "latest"
95
+ },
96
+ "overrides": {
97
+ "minimatch": "^10.2.2",
98
+ "test-exclude": "7.0.1"
94
99
  }
95
100
  }