@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.
Files changed (2) hide show
  1. package/dist/pure.js +2 -1
  2. 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vitest/web-worker",
3
3
  "type": "module",
4
- "version": "2.0.0-beta.11",
4
+ "version": "2.0.0-beta.13",
5
5
  "description": "Web Worker support for testing in Vitest",
6
6
  "license": "MIT",
7
7
  "funding": "https://opencollective.com/vitest",