@atlaspack/transformer-webextension 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/transformer-webextension
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
+
13
+ ## 2.14.19
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies []:
18
+ - @atlaspack/utils@2.17.1
19
+ - @atlaspack/plugin@2.14.19
20
+
3
21
  ## 2.14.18
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/transformer-webextension",
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
  "dependencies": {
16
16
  "@mischnic/json-sourcemap": "^0.1.0",
17
17
  "@atlaspack/diagnostic": "2.14.1",
18
- "@atlaspack/plugin": "2.14.18",
19
- "@atlaspack/utils": "2.17.0",
18
+ "@atlaspack/plugin": "2.14.20",
19
+ "@atlaspack/utils": "2.17.2",
20
20
  "content-security-policy-parser": "^0.3.0"
21
21
  },
22
22
  "type": "commonjs"
@@ -433,4 +433,4 @@ export default (new Transformer({
433
433
  asset.meta.webextEntry = true;
434
434
  return [asset];
435
435
  },
436
- }): Transformer);
436
+ }): Transformer<mixed>);