@adobe/helix-md2docx 2.0.0 → 2.0.1
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,10 @@
|
|
|
1
|
+
## [2.0.1](https://github.com/adobe/helix-md2docx/compare/v2.0.0...v2.0.1) (2022-09-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* use @adobe/fetch ([c12b49e](https://github.com/adobe/helix-md2docx/commit/c12b49e9c79732e0a4c16564eca1363155190f96))
|
|
7
|
+
|
|
1
8
|
# [2.0.0](https://github.com/adobe/helix-md2docx/compare/v1.4.26...v2.0.0) (2022-09-23)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-md2docx",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Helix Service that converts markdown to word documents",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -27,8 +27,8 @@
|
|
|
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
34
|
"docx": "7.4.1",
|
|
@@ -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/
|
|
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';
|