@atlaspack/resolver-default 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,23 @@
1
1
  # @atlaspack/resolver-default
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/node-resolver-core@3.5.20
12
+
13
+ ## 2.14.19
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies []:
18
+ - @atlaspack/node-resolver-core@3.5.19
19
+ - @atlaspack/plugin@2.14.19
20
+
3
21
  ## 2.14.18
4
22
 
5
23
  ### Patch Changes
@@ -50,6 +50,8 @@ var _default = exports.default = new (_plugin().Resolver)({
50
50
  if (WEBPACK_IMPORT_REGEX.test(dependency.specifier)) {
51
51
  throw new Error(`The import path: ${dependency.specifier} is using webpack specific loader import syntax, which isn't supported by Parcel.`);
52
52
  }
53
+
54
+ // $FlowFixMe
53
55
  return resolver.resolve({
54
56
  filename: specifier,
55
57
  specifierType: dependency.specifierType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/resolver-default",
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"
@@ -15,8 +15,8 @@
15
15
  "node": ">= 16.0.0"
16
16
  },
17
17
  "dependencies": {
18
- "@atlaspack/node-resolver-core": "3.5.18",
19
- "@atlaspack/plugin": "2.14.18"
18
+ "@atlaspack/node-resolver-core": "3.5.20",
19
+ "@atlaspack/plugin": "2.14.20"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@babel/core": "^7.22.11"
@@ -30,6 +30,7 @@ export default (new Resolver({
30
30
  );
31
31
  }
32
32
 
33
+ // $FlowFixMe
33
34
  return resolver.resolve({
34
35
  filename: specifier,
35
36
  specifierType: dependency.specifierType,
@@ -41,4 +42,4 @@ export default (new Resolver({
41
42
  packageConditions: dependency.packageConditions,
42
43
  });
43
44
  },
44
- }): Resolver);
45
+ }): Resolver<mixed>);