@regardio/dev 1.11.2 → 1.11.4

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.
@@ -6,7 +6,7 @@ export declare const coverageThresholds: {
6
6
  };
7
7
  export declare const vitestNodeConfig: {
8
8
  coverage: {
9
- provider: string;
9
+ provider: "v8";
10
10
  thresholds: {
11
11
  branches: number;
12
12
  functions: number;
@@ -1,6 +1,6 @@
1
1
  export declare const vitestReactConfig: {
2
2
  coverage: {
3
- provider: string;
3
+ provider: "v8";
4
4
  thresholds: {
5
5
  branches: number;
6
6
  functions: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "@regardio/dev",
4
- "version": "1.11.2",
4
+ "version": "1.11.4",
5
5
  "private": false,
6
6
  "description": "Regardio developer tooling for testing, linting, and build workflows",
7
7
  "keywords": [
@@ -15,7 +15,7 @@ export const coverageThresholds = {
15
15
  */
16
16
  export const vitestNodeConfig = {
17
17
  coverage: {
18
- provider: 'v8',
18
+ provider: 'v8' as const,
19
19
  thresholds: coverageThresholds,
20
20
  },
21
21
  environment: 'node',
@@ -8,7 +8,7 @@ import { coverageThresholds } from './node';
8
8
  */
9
9
  export const vitestReactConfig = {
10
10
  coverage: {
11
- provider: 'v8',
11
+ provider: 'v8' as const,
12
12
  thresholds: coverageThresholds,
13
13
  },
14
14
  environment: 'jsdom',