vitest 0.6.3 → 0.7.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/dist/cli.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { EventEmitter } from 'events';
2
- import { d as c } from './chunk-utils-base.4350de31.js';
3
- import { v as version, s as startVitest, d as divider } from './chunk-vite-node-externalize.3c10a918.js';
2
+ import { d as c } from './chunk-utils-base.7c918096.js';
3
+ import { v as version, s as startVitest, d as divider } from './chunk-vite-node-externalize.7999d177.js';
4
4
  import 'path';
5
5
  import 'tty';
6
6
  import 'local-pkg';
@@ -16,13 +16,13 @@ import 'assert';
16
16
  import 'url';
17
17
  import 'os';
18
18
  import 'vite';
19
- import './chunk-constants.15865c75.js';
20
- import './chunk-vite-node-utils.78bec025.js';
19
+ import './chunk-constants.3c02fa95.js';
20
+ import './chunk-vite-node-utils.42d37fe8.js';
21
21
  import 'module';
22
22
  import 'vm';
23
- import './chunk-defaults.5e983edd.js';
23
+ import './chunk-defaults.00934aae.js';
24
24
  import 'perf_hooks';
25
- import './chunk-utils-source-map.f852610c.js';
25
+ import './chunk-utils-source-map.de9cc412.js';
26
26
  import 'worker_threads';
27
27
  import 'tinypool';
28
28
  import './chunk-magic-string.d5e0e473.js';
package/dist/config.d.ts CHANGED
@@ -92,7 +92,7 @@ interface DepsHandlingOptions {
92
92
  inline?: (string | RegExp)[];
93
93
  /**
94
94
  * Try to guess the CJS version of a package when it's invalid ESM
95
- * @default true
95
+ * @default false
96
96
  */
97
97
  fallbackCJS?: boolean;
98
98
  }
@@ -665,7 +665,7 @@ interface InlineConfig {
665
665
  * This will significantly improve the performance in huge repo, but might potentially
666
666
  * cause some misalignment if a package have different logic in ESM and CJS mode.
667
667
  *
668
- * @default true
668
+ * @default false
669
669
  */
670
670
  fallbackCJS?: boolean;
671
671
  };