@atlaspack/resolver-glob 2.14.18 → 2.14.20

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,25 @@
1
1
  # @atlaspack/resolver-glob
2
2
 
3
+ ## 2.14.20
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)]:
10
+ - @atlaspack/plugin@2.14.20
11
+ - @atlaspack/utils@2.17.2
12
+ - @atlaspack/node-resolver-core@3.5.20
13
+
14
+ ## 2.14.19
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies []:
19
+ - @atlaspack/utils@2.17.1
20
+ - @atlaspack/node-resolver-core@3.5.19
21
+ - @atlaspack/plugin@2.14.19
22
+
3
23
  ## 2.14.18
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/resolver-glob",
3
- "version": "2.14.18",
3
+ "version": "2.14.20",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,9 +16,9 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@atlaspack/diagnostic": "2.14.1",
19
- "@atlaspack/node-resolver-core": "3.5.18",
20
- "@atlaspack/plugin": "2.14.18",
21
- "@atlaspack/utils": "2.17.0",
19
+ "@atlaspack/node-resolver-core": "3.5.20",
20
+ "@atlaspack/plugin": "2.14.20",
21
+ "@atlaspack/utils": "2.17.2",
22
22
  "nullthrows": "^1.1.1"
23
23
  },
24
24
  "type": "commonjs"
@@ -222,7 +222,7 @@ export default (new Resolver({
222
222
  priority: 'sync',
223
223
  };
224
224
  },
225
- }): Resolver);
225
+ }): Resolver<mixed>);
226
226
 
227
227
  function set(obj, path, value) {
228
228
  for (let i = 0; i < path.length - 1; i++) {