vitest 0.7.0 → 0.7.1
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 +0 -29
- package/dist/{chunk-api-setup.124ffd49.js → chunk-api-setup.78dc40d0.js} +5 -5
- package/dist/{chunk-constants.3c02fa95.js → chunk-constants.a717efa1.js} +2 -2
- package/dist/{chunk-defaults.00934aae.js → chunk-defaults.720fd914.js} +2 -2
- package/dist/{chunk-install-pkg.ba2381b8.js → chunk-install-pkg.1d3b155f.js} +3 -3
- package/dist/{chunk-integrations-globals.f9bdfc7b.js → chunk-integrations-globals.7566c2ac.js} +7 -7
- package/dist/chunk-runtime-chain.9e150040.js +7048 -0
- package/dist/{chunk-runtime-rpc.d609e403.js → chunk-runtime-rpc.5f9e77bc.js} +2 -2
- package/dist/{chunk-utils-base.7c918096.js → chunk-utils-base.8397dafe.js} +2 -2
- package/dist/chunk-utils-path.c049f6c1.js +267 -0
- package/dist/{chunk-utils-source-map.de9cc412.js → chunk-utils-source-map.268054ec.js} +2 -2
- package/dist/{chunk-vite-node-externalize.7999d177.js → chunk-vite-node-externalize.dcae037e.js} +14 -13
- package/dist/{chunk-vite-node-utils.42d37fe8.js → chunk-vite-node-utils.f7a2c0bb.js} +2 -2
- package/dist/cli.js +8 -8
- package/dist/entry.js +15 -13
- package/dist/index.d.ts +15 -5
- package/dist/index.js +5 -5
- package/dist/jest-mock.js +1 -1
- package/dist/node.d.ts +3 -3
- package/dist/node.js +9 -9
- package/dist/{vendor-_commonjsHelpers.edc3a5f0.js → vendor-_commonjsHelpers.34b404ce.js} +2 -6
- package/dist/{vendor-index.a89597d0.js → vendor-index.16e6622e.js} +2 -2
- package/dist/worker.js +7 -7
- package/package.json +3 -4
- package/dist/chunk-runtime-chain.4422c0fc.js +0 -7089
- package/dist/chunk-utils-path.f4e6a133.js +0 -267
package/dist/cli.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { EventEmitter } from 'events';
|
|
2
|
-
import { d as c } from './chunk-utils-base.
|
|
3
|
-
import { v as version, s as startVitest, d as divider } from './chunk-vite-node-externalize.
|
|
2
|
+
import { d as c } from './chunk-utils-base.8397dafe.js';
|
|
3
|
+
import { v as version, s as startVitest, d as divider } from './chunk-vite-node-externalize.dcae037e.js';
|
|
4
4
|
import 'path';
|
|
5
5
|
import 'tty';
|
|
6
6
|
import 'local-pkg';
|
|
7
7
|
import 'buffer';
|
|
8
8
|
import 'child_process';
|
|
9
9
|
import 'process';
|
|
10
|
-
import './vendor-index.
|
|
11
|
-
import './vendor-_commonjsHelpers.
|
|
10
|
+
import './vendor-index.16e6622e.js';
|
|
11
|
+
import './vendor-_commonjsHelpers.34b404ce.js';
|
|
12
12
|
import 'fs';
|
|
13
13
|
import 'stream';
|
|
14
14
|
import 'util';
|
|
@@ -16,13 +16,13 @@ import 'assert';
|
|
|
16
16
|
import 'url';
|
|
17
17
|
import 'os';
|
|
18
18
|
import 'vite';
|
|
19
|
-
import './chunk-constants.
|
|
20
|
-
import './chunk-vite-node-utils.
|
|
19
|
+
import './chunk-constants.a717efa1.js';
|
|
20
|
+
import './chunk-vite-node-utils.f7a2c0bb.js';
|
|
21
21
|
import 'module';
|
|
22
22
|
import 'vm';
|
|
23
|
-
import './chunk-defaults.
|
|
23
|
+
import './chunk-defaults.720fd914.js';
|
|
24
24
|
import 'perf_hooks';
|
|
25
|
-
import './chunk-utils-source-map.
|
|
25
|
+
import './chunk-utils-source-map.268054ec.js';
|
|
26
26
|
import 'worker_threads';
|
|
27
27
|
import 'tinypool';
|
|
28
28
|
import './chunk-magic-string.d5e0e473.js';
|