@adobe/helix-md2docx 2.0.0 → 2.0.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,3 +1,17 @@
1
+ ## [2.0.2](https://github.com/adobe/helix-md2docx/compare/v2.0.1...v2.0.2) (2022-09-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([5ef9693](https://github.com/adobe/helix-md2docx/commit/5ef9693da12b346fb72bc620236d0b3337bc495a))
7
+
8
+ ## [2.0.1](https://github.com/adobe/helix-md2docx/compare/v2.0.0...v2.0.1) (2022-09-23)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * use @adobe/fetch ([c12b49e](https://github.com/adobe/helix-md2docx/commit/c12b49e9c79732e0a4c16564eca1363155190f96))
14
+
1
15
  # [2.0.0](https://github.com/adobe/helix-md2docx/compare/v1.4.26...v2.0.0) (2022-09-23)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-md2docx",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Helix Service that converts markdown to word documents",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -27,13 +27,13 @@
27
27
  },
28
28
  "homepage": "https://github.com/adobe/helix-md2docx#readme",
29
29
  "dependencies": {
30
+ "@adobe/fetch": "3.1.4",
30
31
  "@adobe/helix-docx2md": "1.1.1",
31
- "@adobe/helix-fetch": "3.1.2",
32
32
  "@adobe/helix-markdown-support": "5.0.7",
33
33
  "@adobe/helix-shared-process-queue": "1.1.5",
34
- "docx": "7.4.1",
34
+ "docx": "7.5.0",
35
35
  "hast-util-is-element": "2.1.2",
36
- "hast-util-to-mdast": "8.4.0",
36
+ "hast-util-to-mdast": "8.4.1",
37
37
  "image-size": "1.0.2",
38
38
  "mime": "3.0.0",
39
39
  "rehype-parse": "8.0.4",
@@ -50,7 +50,7 @@
50
50
  "@semantic-release/git": "10.0.1",
51
51
  "c8": "7.12.0",
52
52
  "dotenv": "16.0.2",
53
- "eslint": "8.23.1",
53
+ "eslint": "8.24.0",
54
54
  "eslint-import-resolver-exports": "1.0.0-beta.3",
55
55
  "eslint-plugin-header": "3.1.1",
56
56
  "eslint-plugin-import": "2.26.0",
@@ -11,7 +11,7 @@
11
11
  */
12
12
  /* eslint-disable no-param-reassign */
13
13
  import crypto from 'crypto';
14
- import { context as fetchAPI, h1 } from '@adobe/helix-fetch';
14
+ import { context as fetchAPI, h1 } from '@adobe/fetch';
15
15
  import processQueue from '@adobe/helix-shared-process-queue';
16
16
  import { visit } from 'unist-util-visit';
17
17
  import getDimensions from 'image-size';