@atlaspack/workers 2.14.25 → 2.14.26

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,19 @@
1
1
  # @atlaspack/workers
2
2
 
3
+ ## 2.14.26
4
+
5
+ ### Patch Changes
6
+
7
+ - [#742](https://github.com/atlassian-labs/atlaspack/pull/742) [`ee040bb`](https://github.com/atlassian-labs/atlaspack/commit/ee040bb6428f29b57d892ddd8107e29077d08ffd) Thanks [@yamadapc](https://github.com/yamadapc)! - Internal changes and bug fixes to environmentDeduplication flag
8
+
9
+ - Updated dependencies [[`ee040bb`](https://github.com/atlassian-labs/atlaspack/commit/ee040bb6428f29b57d892ddd8107e29077d08ffd), [`889c65c`](https://github.com/atlassian-labs/atlaspack/commit/889c65cd25b811045e26a117e7404f694dde77a2)]:
10
+ - @atlaspack/types-internal@2.19.2
11
+ - @atlaspack/build-cache@2.13.5
12
+ - @atlaspack/diagnostic@2.14.3
13
+ - @atlaspack/profiler@2.14.23
14
+ - @atlaspack/logger@2.14.18
15
+ - @atlaspack/utils@2.18.3
16
+
3
17
  ## 2.14.25
4
18
 
5
19
  ### Patch Changes
package/lib/WorkerFarm.js CHANGED
@@ -494,7 +494,6 @@ class WorkerFarm extends _events().default {
494
494
  });
495
495
  _logger().default.info({
496
496
  origin: '@atlaspack/workers',
497
- // @ts-expect-error TS2345
498
497
  message: (0, _diagnostic().md)`Wrote profile to ${filename}`
499
498
  });
500
499
  }
@@ -529,7 +528,6 @@ class WorkerFarm extends _events().default {
529
528
  })));
530
529
  _logger().default.info({
531
530
  origin: '@atlaspack/workers',
532
- // @ts-expect-error TS2345
533
531
  message: (0, _diagnostic().md)`Wrote heap snapshots to the following paths:\n${snapshotPaths.join('\n')}`
534
532
  });
535
533
  } catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/workers",
3
- "version": "2.14.25",
3
+ "version": "2.14.26",
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",
21
- "@atlaspack/diagnostic": "2.14.2",
22
- "@atlaspack/logger": "2.14.17",
23
- "@atlaspack/profiler": "2.14.22",
24
- "@atlaspack/types-internal": "2.19.1",
25
- "@atlaspack/utils": "2.18.2",
20
+ "@atlaspack/build-cache": "2.13.5",
21
+ "@atlaspack/diagnostic": "2.14.3",
22
+ "@atlaspack/logger": "2.14.18",
23
+ "@atlaspack/profiler": "2.14.23",
24
+ "@atlaspack/types-internal": "2.19.2",
25
+ "@atlaspack/utils": "2.18.3",
26
26
  "nullthrows": "^1.1.1"
27
27
  },
28
28
  "browser": {
package/src/WorkerFarm.ts CHANGED
@@ -633,7 +633,6 @@ export default class WorkerFarm extends EventEmitter {
633
633
 
634
634
  logger.info({
635
635
  origin: '@atlaspack/workers',
636
- // @ts-expect-error TS2345
637
636
  message: md`Wrote profile to ${filename}`,
638
637
  });
639
638
  }
@@ -690,7 +689,6 @@ export default class WorkerFarm extends EventEmitter {
690
689
 
691
690
  logger.info({
692
691
  origin: '@atlaspack/workers',
693
- // @ts-expect-error TS2345
694
692
  message: md`Wrote heap snapshots to the following paths:\n${snapshotPaths.join(
695
693
  '\n',
696
694
  )}`,