@entreprise-os/vitest-config 2.4.341-beta.d3cfd3e → 2.4.342
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/dist/data.d.ts +2 -2
- package/dist/ui.d.ts +2 -2
- package/package.json +1 -1
package/dist/data.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vite1 from "vite";
|
|
2
2
|
|
|
3
3
|
//#region data.d.ts
|
|
4
4
|
|
|
@@ -8,6 +8,6 @@ import * as vite0 from "vite";
|
|
|
8
8
|
* Configures sequential test execution to avoid database race conditions.
|
|
9
9
|
* Tests run sequentially across all files since they share a database singleton.
|
|
10
10
|
*/
|
|
11
|
-
declare const _default:
|
|
11
|
+
declare const _default: vite1.UserConfig;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { _default as default };
|
package/dist/ui.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vite0 from "vite";
|
|
2
2
|
|
|
3
3
|
//#region ui.d.ts
|
|
4
4
|
|
|
@@ -8,6 +8,6 @@ import * as vite1 from "vite";
|
|
|
8
8
|
* Provides path alias resolution and test file patterns.
|
|
9
9
|
* Individual packages can extend this config and customize the alias name.
|
|
10
10
|
*/
|
|
11
|
-
declare function createUiConfig(aliasName?: string, srcPath?: string):
|
|
11
|
+
declare function createUiConfig(aliasName?: string, srcPath?: string): vite0.UserConfig;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { createUiConfig };
|