@trackunit/react-vite-test-setup 0.0.114-alpha-62031fc7c43.0 → 0.0.114
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/migrations/entry.js.map +1 -0
- package/package.json +1 -1
- package/preset.cjs.js +2 -2
- package/preset.esm.js +2 -2
- package/src/preset/vitestPreset.d.ts +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entry.js","sourceRoot":"","sources":["../../../../../libs/react/vite-test-setup/migrations/entry.ts"],"names":[],"mappings":"","sourcesContent":["export {};\n"]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-vite-test-setup",
|
|
3
3
|
"description": "Test setup utilities for React applications",
|
|
4
|
-
"version": "0.0.114
|
|
4
|
+
"version": "0.0.114",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
7
7
|
"engines": {
|
package/preset.cjs.js
CHANGED
|
@@ -83,8 +83,8 @@ const STUBBED_MODULES = [
|
|
|
83
83
|
* - `transformIgnorePatterns` is unnecessary - Vite transforms ESM
|
|
84
84
|
* packages by default; if a CJS package needs forcing, add
|
|
85
85
|
* `server.deps.inline` in the per-project config.
|
|
86
|
-
* - `resolver: @nx/jest/plugins/resolver` is replaced by the
|
|
87
|
-
*
|
|
86
|
+
* - `resolver: @nx/jest/plugins/resolver` is replaced by the
|
|
87
|
+
* `nxViteTsPaths()` plugin in each per-project config.
|
|
88
88
|
*/
|
|
89
89
|
const vitestPreset = {
|
|
90
90
|
resolve: {
|
package/preset.esm.js
CHANGED
|
@@ -60,8 +60,8 @@ const STUBBED_MODULES = [
|
|
|
60
60
|
* - `transformIgnorePatterns` is unnecessary - Vite transforms ESM
|
|
61
61
|
* packages by default; if a CJS package needs forcing, add
|
|
62
62
|
* `server.deps.inline` in the per-project config.
|
|
63
|
-
* - `resolver: @nx/jest/plugins/resolver` is replaced by the
|
|
64
|
-
*
|
|
63
|
+
* - `resolver: @nx/jest/plugins/resolver` is replaced by the
|
|
64
|
+
* `nxViteTsPaths()` plugin in each per-project config.
|
|
65
65
|
*/
|
|
66
66
|
const vitestPreset = {
|
|
67
67
|
resolve: {
|
|
@@ -41,8 +41,8 @@ type VitestPresetShape = {
|
|
|
41
41
|
* - `transformIgnorePatterns` is unnecessary - Vite transforms ESM
|
|
42
42
|
* packages by default; if a CJS package needs forcing, add
|
|
43
43
|
* `server.deps.inline` in the per-project config.
|
|
44
|
-
* - `resolver: @nx/jest/plugins/resolver` is replaced by the
|
|
45
|
-
*
|
|
44
|
+
* - `resolver: @nx/jest/plugins/resolver` is replaced by the
|
|
45
|
+
* `nxViteTsPaths()` plugin in each per-project config.
|
|
46
46
|
*/
|
|
47
47
|
export declare const vitestPreset: VitestPresetShape;
|
|
48
48
|
export {};
|