@deot/dev-tester 2.6.2 → 2.7.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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. package/shared.config.ts +7 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deot/dev-tester",
3
- "version": "2.6.2",
3
+ "version": "2.7.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,14 +20,14 @@
20
20
  "access": "public"
21
21
  },
22
22
  "dependencies": {
23
- "@deot/dev-react": "^2.6.2",
24
- "@deot/dev-shared": "^2.6.2",
25
- "@deot/dev-vue": "^2.6.2",
26
- "@vitest/coverage-istanbul": "^0.34.6",
23
+ "@deot/dev-react": "^2.7.0",
24
+ "@deot/dev-shared": "^2.7.0",
25
+ "@deot/dev-vue": "^2.7.0",
26
+ "@vitest/coverage-istanbul": "^1.0.1",
27
27
  "cross-env": "^7.0.3",
28
28
  "inquirer": "^9.2.12",
29
29
  "inquirer-autocomplete-prompt": "^3.0.1",
30
- "jsdom": "^22.1.0",
31
- "vitest": "^0.34.6"
30
+ "jsdom": "^23.0.1",
31
+ "vitest": "^1.0.1"
32
32
  }
33
33
  }
package/shared.config.ts CHANGED
@@ -115,10 +115,13 @@ export default mergeConfig(getViteConfig(), defineConfig({
115
115
  enabled: true,
116
116
  provider: 'istanbul',
117
117
  reporter: ['text', 'html'],
118
- branches: 85,
119
- statements: 95,
120
- functions: 95,
121
- lines: 95,
118
+ all: false,
119
+ thresholds: {
120
+ branches: 85,
121
+ statements: 95,
122
+ functions: 95,
123
+ lines: 95
124
+ },
122
125
  include: collects,
123
126
  exclude: [
124
127
  `**/examples/**`,