@atlaspack/workers 2.14.15-dev.0 → 2.14.16-dev-eae8c193d.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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @atlaspack/workers
2
2
 
3
+ ## 2.14.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @atlaspack/types-internal@2.14.13
9
+ - @atlaspack/utils@2.15.3
10
+ - @atlaspack/profiler@2.14.13
11
+
3
12
  ## 2.14.14
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/workers",
3
- "version": "2.14.15-dev.0",
3
+ "version": "2.14.16-dev-eae8c193d.0",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
@@ -17,12 +17,12 @@
17
17
  "node": ">= 16.0.0"
18
18
  },
19
19
  "dependencies": {
20
- "@atlaspack/build-cache": "2.13.4-dev.0",
21
- "@atlaspack/diagnostic": "2.14.2-dev.0",
22
- "@atlaspack/logger": "2.14.12-dev.0",
23
- "@atlaspack/profiler": "2.14.13-dev.0",
24
- "@atlaspack/types-internal": "2.14.13-dev.0",
25
- "@atlaspack/utils": "2.15.3-dev.0",
20
+ "@atlaspack/build-cache": "2.13.4-dev-eae8c193d.0",
21
+ "@atlaspack/diagnostic": "2.14.2-dev-eae8c193d.0",
22
+ "@atlaspack/logger": "2.14.12-dev-eae8c193d.0",
23
+ "@atlaspack/profiler": "2.14.14-dev-eae8c193d.0",
24
+ "@atlaspack/types-internal": "2.14.14-dev-eae8c193d.0",
25
+ "@atlaspack/utils": "2.15.4-dev-eae8c193d.0",
26
26
  "nullthrows": "^1.1.1"
27
27
  },
28
28
  "browser": {
@@ -30,5 +30,5 @@
30
30
  "./src/threads/ThreadsWorker.js": false
31
31
  },
32
32
  "type": "commonjs",
33
- "gitHead": "6ce3565fe038caf52c09fad4e48175829b174571"
33
+ "gitHead": "eae8c193d1b12309f6377859a2da6a352b329f3d"
34
34
  }
@@ -292,6 +292,7 @@ describe('WorkerFarm', function () {
292
292
  await dispose();
293
293
  result = await workerfarm.run(ref);
294
294
  assert.equal(result, 'Shared reference does not exist');
295
+ await workerfarm.end();
295
296
  });
296
297
 
297
298
  it('Should resolve shared references in workers', async () => {
@@ -311,6 +312,7 @@ describe('WorkerFarm', function () {
311
312
 
312
313
  await dispose();
313
314
  assert(workerfarm.workerApi.resolveSharedReference(sharedValue) == null);
315
+ await workerfarm.end();
314
316
  });
315
317
 
316
318
  it('Should support shared references in local worker', async () => {
@@ -329,6 +331,7 @@ describe('WorkerFarm', function () {
329
331
  await dispose();
330
332
  result = await workerfarm.run(ref);
331
333
  assert.equal(result, 'Shared reference does not exist');
334
+ await workerfarm.end();
332
335
  });
333
336
 
334
337
  it('should resolve shared references in local worker', async () => {
@@ -348,6 +351,7 @@ describe('WorkerFarm', function () {
348
351
 
349
352
  await dispose();
350
353
  assert(workerfarm.workerApi.resolveSharedReference(sharedValue) == null);
354
+ await workerfarm.end();
351
355
  });
352
356
 
353
357
  it('Should dispose of shared references when ending', async () => {
@@ -361,5 +365,6 @@ describe('WorkerFarm', function () {
361
365
  assert.equal(workerfarm.sharedReferences.size, 1);
362
366
  await workerfarm.end();
363
367
  assert.equal(workerfarm.sharedReferences.size, 0);
368
+ await workerfarm.end();
364
369
  });
365
370
  });