@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.
- package/lib/esm/index.d.ts +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/package.json +11 -6
package/lib/esm/index.d.ts
CHANGED
package/lib/esm/index.js
CHANGED
package/lib/index.cjs
CHANGED
package/lib/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/ui-decorators",
|
|
3
|
-
"version": "0.6.
|
|
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 --
|
|
24
|
-
"test:integration": "jest --
|
|
25
|
-
"test:all": "jest --
|
|
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.
|
|
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
|
}
|