@vitest/web-worker 2.0.0-beta.11 → 2.0.0-beta.13
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/pure.js +2 -1
- package/package.json +1 -1
package/dist/pure.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { VitestExecutor } from 'vitest/execute';
|
2
|
-
import { readFileSync } from 'node:fs';
|
2
|
+
import { readFileSync as readFileSync$1 } from 'node:fs';
|
3
3
|
import createDebug from 'debug';
|
4
4
|
import { MessageChannel } from 'node:worker_threads';
|
5
5
|
|
@@ -281,6 +281,7 @@ var ponyfillStructuredClone = typeof structuredClone === "function" ?
|
|
281
281
|
) :
|
282
282
|
(any, options) => deserialize(serialize(any, options));
|
283
283
|
|
284
|
+
const readFileSync = readFileSync$1;
|
284
285
|
const debug = createDebug("vitest:web-worker");
|
285
286
|
function getWorkerState() {
|
286
287
|
return globalThis.__vitest_worker__;
|
package/package.json
CHANGED