vitest 0.2.5 → 0.3.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.
- package/LICENSE.md +5 -5
- package/dist/cli.js +1088 -23
- package/dist/client-ab3f363e.js +9442 -0
- package/dist/constants-259a41c8.js +81 -0
- package/dist/create-d3b904b2.js +9177 -0
- package/dist/{diff-6be0541d.js → diff-e2ede84f.js} +3 -4
- package/dist/entry.js +132 -98
- package/dist/{globals-19399ded.js → globals-a1c78816.js} +8 -9
- package/dist/index-648e7ab2.js +331 -0
- package/dist/index-6e709f57.js +782 -0
- package/dist/{index-bffba653.js → index-afc85128.js} +5 -3
- package/dist/index-ce49e384.js +1644 -0
- package/dist/index-f55e7b59.js +406 -0
- package/dist/index.d.ts +113 -92
- package/dist/index.js +9 -6
- package/dist/jest-mock.js +99 -0
- package/dist/node.d.ts +61 -56
- package/dist/node.js +10 -11
- package/dist/{setup-d961d28c.js → setup-7939a7aa.js} +48 -7
- package/dist/{source-map-1132e742.js → source-map-0ecca7b8.js} +2 -2
- package/dist/{vi-ed2bce6b.js → vi-93df942a.js} +46 -25
- package/dist/worker.js +29 -35
- package/package.json +10 -10
- package/dist/client-f15310bf.js +0 -9442
- package/dist/constants-de5287a6.js +0 -34
- package/dist/create-48243480.js +0 -9169
- package/dist/index-043440ae.js +0 -222
- package/dist/index-1964368a.js +0 -187
- package/dist/index-61c8686f.js +0 -331
- package/dist/index-9f4b9905.js +0 -2411
- package/dist/jest-mock-113430de.js +0 -99
package/dist/node.js
CHANGED
|
@@ -1,28 +1,27 @@
|
|
|
1
|
-
export { V as VitestPlugin, c as createVitest } from './create-
|
|
2
|
-
import './index-
|
|
1
|
+
export { V as VitestPlugin, c as createVitest } from './create-d3b904b2.js';
|
|
2
|
+
import './index-f55e7b59.js';
|
|
3
3
|
import 'path';
|
|
4
|
+
import 'tty';
|
|
5
|
+
import 'local-pkg';
|
|
4
6
|
import 'vite';
|
|
5
7
|
import 'process';
|
|
6
8
|
import 'fs';
|
|
7
|
-
import './constants-
|
|
9
|
+
import './constants-259a41c8.js';
|
|
8
10
|
import 'url';
|
|
9
11
|
import 'os';
|
|
10
12
|
import 'util';
|
|
11
13
|
import 'stream';
|
|
12
14
|
import 'events';
|
|
13
|
-
import './
|
|
14
|
-
import 'tty';
|
|
15
|
-
import 'local-pkg';
|
|
16
|
-
import './client-f15310bf.js';
|
|
15
|
+
import './client-ab3f363e.js';
|
|
17
16
|
import 'module';
|
|
18
17
|
import 'assert';
|
|
19
18
|
import 'vm';
|
|
20
19
|
import 'perf_hooks';
|
|
21
|
-
import './diff-
|
|
22
|
-
import './source-map-
|
|
23
|
-
import './index-
|
|
20
|
+
import './diff-e2ede84f.js';
|
|
21
|
+
import './source-map-0ecca7b8.js';
|
|
22
|
+
import './index-648e7ab2.js';
|
|
24
23
|
import './_commonjsHelpers-c9e3b764.js';
|
|
25
24
|
import 'worker_threads';
|
|
26
25
|
import 'tinypool';
|
|
27
26
|
import './magic-string.es-94000aea.js';
|
|
28
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
27
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9kZS5qcyIsInNvdXJjZXMiOltdLCJzb3VyY2VzQ29udGVudCI6W10sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7In0=
|