@atlaspack/bundler-default 3.1.0 → 3.1.2

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,27 @@
1
1
  # @atlaspack/bundler-default
2
2
 
3
+ ## 3.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#702](https://github.com/atlassian-labs/atlaspack/pull/702) [`daaa768`](https://github.com/atlassian-labs/atlaspack/commit/daaa7688786772d7e3713b71c5bba6b89ec704aa) Thanks [@alshdavid](https://github.com/alshdavid)! - Fixes to Flow types
8
+
9
+ - Updated dependencies [[`daaa768`](https://github.com/atlassian-labs/atlaspack/commit/daaa7688786772d7e3713b71c5bba6b89ec704aa), [`1c7865a`](https://github.com/atlassian-labs/atlaspack/commit/1c7865a64451116d94015e248302435839d347c0), [`a0b959f`](https://github.com/atlassian-labs/atlaspack/commit/a0b959fbf61fc3f820ff03c7e8988945fe40a91a)]:
10
+ - @atlaspack/plugin@2.14.20
11
+ - @atlaspack/feature-flags@2.19.2
12
+ - @atlaspack/graph@3.5.9
13
+ - @atlaspack/utils@2.17.2
14
+
15
+ ## 3.1.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [[`13aef17`](https://github.com/atlassian-labs/atlaspack/commit/13aef177eea289a6e40d2113b5ec1ac9be18a33d)]:
20
+ - @atlaspack/feature-flags@2.19.1
21
+ - @atlaspack/graph@3.5.8
22
+ - @atlaspack/utils@2.17.1
23
+ - @atlaspack/plugin@2.14.19
24
+
3
25
  ## 3.1.0
4
26
 
5
27
  ### Minor Changes
@@ -75,7 +75,9 @@ var _default = exports.default = new (_plugin().Bundler)({
75
75
  }
76
76
 
77
77
  // Create separate bundleGraphs per distDir
78
- graphs.push((0, _idealGraph.createIdealGraph)(bundleGraph, config, idealGraphEntries, logger));
78
+ graphs.push(
79
+ // $FlowFixMe
80
+ (0, _idealGraph.createIdealGraph)(bundleGraph, config, idealGraphEntries, logger));
79
81
 
80
82
  // Do this after the ideal graph so that the mutation of the bundleGraph doesn't
81
83
  // interfere with the main bundling algorithm
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/bundler-default",
3
- "version": "3.1.0",
3
+ "version": "3.1.2",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {
@@ -17,11 +17,11 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "@atlaspack/diagnostic": "2.14.1",
20
- "@atlaspack/feature-flags": "2.19.0",
21
- "@atlaspack/graph": "3.5.7",
22
- "@atlaspack/plugin": "2.14.18",
20
+ "@atlaspack/feature-flags": "2.19.2",
21
+ "@atlaspack/graph": "3.5.9",
22
+ "@atlaspack/plugin": "2.14.20",
23
23
  "@atlaspack/rust": "3.4.1",
24
- "@atlaspack/utils": "2.17.0",
24
+ "@atlaspack/utils": "2.17.2",
25
25
  "nullthrows": "^1.1.1",
26
26
  "many-keys-map": "^1.0.3"
27
27
  }
@@ -49,6 +49,7 @@ export default (new Bundler({
49
49
 
50
50
  // Create separate bundleGraphs per distDir
51
51
  graphs.push(
52
+ // $FlowFixMe
52
53
  createIdealGraph(bundleGraph, config, idealGraphEntries, logger),
53
54
  );
54
55
 
@@ -64,7 +65,7 @@ export default (new Bundler({
64
65
  }
65
66
  },
66
67
  optimize() {},
67
- }): Bundler);
68
+ }): Bundler<mixed>);
68
69
 
69
70
  function getEntryByTarget(
70
71
  bundleGraph: MutableBundleGraph,