@adobe/helix-importer 1.16.1 → 2.0.0
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 +12 -0
- package/package.json +17 -19
- package/src/importer/HTML2x.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [2.0.0](https://github.com/adobe/helix-importer/compare/v1.16.1...v2.0.0) (2022-09-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* upgrade to latest md2docx ([4a8a38c](https://github.com/adobe/helix-importer/commit/4a8a38cb3ef0ff0ca2489b12f6b801af1e84d85b))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* svg2png was replaced with image2png
|
|
12
|
+
|
|
1
13
|
## [1.16.1](https://github.com/adobe/helix-importer/compare/v1.16.0...v1.16.1) (2022-09-15)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-importer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Helix Importer tool: create md / docx from html",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"scripts": {
|
|
12
12
|
"lint": "eslint .",
|
|
13
13
|
"test": "c8 mocha",
|
|
14
|
-
"test-ci": "c8 mocha
|
|
14
|
+
"test-ci": "c8 mocha",
|
|
15
15
|
"semantic-release": "semantic-release",
|
|
16
16
|
"prepare": "npx husky install"
|
|
17
17
|
},
|
|
@@ -26,37 +26,35 @@
|
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@adobe/eslint-config-helix": "1.3.2",
|
|
29
|
-
"@adobe/helix-docx2md": "1.
|
|
30
|
-
"@adobe/helix-mediahandler": "1.
|
|
29
|
+
"@adobe/helix-docx2md": "1.1.1",
|
|
30
|
+
"@adobe/helix-mediahandler": "1.2.4",
|
|
31
31
|
"@semantic-release/changelog": "6.0.1",
|
|
32
32
|
"@semantic-release/exec": "6.0.3",
|
|
33
33
|
"@semantic-release/git": "10.0.1",
|
|
34
|
-
"c8": "7.
|
|
35
|
-
"codecov": "3.8.3",
|
|
34
|
+
"c8": "7.12.0",
|
|
36
35
|
"dirname-filename-esm": "1.1.1",
|
|
37
36
|
"eslint": "8.7.0",
|
|
38
37
|
"eslint-plugin-header": "3.1.1",
|
|
39
38
|
"eslint-plugin-import": "2.25.4",
|
|
40
|
-
"husky": "
|
|
41
|
-
"lint-staged": "
|
|
42
|
-
"mocha": "
|
|
39
|
+
"husky": "8.0.1",
|
|
40
|
+
"lint-staged": "13.0.3",
|
|
41
|
+
"mocha": "10.0.0",
|
|
43
42
|
"mocha-multi-reporters": "1.5.1",
|
|
44
|
-
"mock-fs": "5.1.
|
|
45
|
-
"semantic-release": "19.0.
|
|
43
|
+
"mock-fs": "5.1.4",
|
|
44
|
+
"semantic-release": "19.0.5"
|
|
46
45
|
},
|
|
47
|
-
"author": "",
|
|
48
46
|
"license": "Apache-2.0",
|
|
49
47
|
"dependencies": {
|
|
50
|
-
"@adobe/helix-md2docx": "
|
|
48
|
+
"@adobe/helix-md2docx": "2.0.1",
|
|
51
49
|
"form-data": "4.0.0",
|
|
52
|
-
"fs-extra": "10.
|
|
50
|
+
"fs-extra": "10.1.0",
|
|
53
51
|
"hast-util-to-html": "8.0.3",
|
|
54
|
-
"hast-util-to-mdast": "8.
|
|
55
|
-
"jsdom": "
|
|
56
|
-
"node-fetch": "3.2.
|
|
57
|
-
"rehype-parse": "8.0.
|
|
52
|
+
"hast-util-to-mdast": "8.4.1",
|
|
53
|
+
"jsdom": "20.0.0",
|
|
54
|
+
"node-fetch": "3.2.10",
|
|
55
|
+
"rehype-parse": "8.0.4",
|
|
58
56
|
"rehype-remark": "9.1.2",
|
|
59
57
|
"remark-stringify": "10.0.2",
|
|
60
|
-
"unified": "10.1.
|
|
58
|
+
"unified": "10.1.2"
|
|
61
59
|
}
|
|
62
60
|
}
|