@adobe/helix-importer 2.5.6 → 2.5.7
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.5.7](https://github.com/adobe/helix-importer/compare/v2.5.6...v2.5.7) (2023-01-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* trigger release ([026ddb9](https://github.com/adobe/helix-importer/commit/026ddb99dec82cbafb06545cd661d3f448f9ef6a))
|
|
7
|
+
|
|
1
8
|
## [2.5.6](https://github.com/adobe/helix-importer/compare/v2.5.5...v2.5.6) (2023-01-19)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-importer",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.7",
|
|
4
4
|
"description": "Helix Importer tool: create md / docx from html",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@adobe/eslint-config-helix": "1.3.2",
|
|
29
|
-
"@adobe/helix-docx2md": "1.3.
|
|
29
|
+
"@adobe/helix-docx2md": "1.3.9",
|
|
30
30
|
"@adobe/helix-mediahandler": "2.0.1",
|
|
31
31
|
"@semantic-release/changelog": "6.0.2",
|
|
32
32
|
"@semantic-release/exec": "6.0.3",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"license": "Apache-2.0",
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@adobe/helix-markdown-support": "6.0.1",
|
|
50
|
-
"@adobe/helix-md2docx": "2.0.
|
|
50
|
+
"@adobe/helix-md2docx": "2.0.31",
|
|
51
51
|
"@adobe/mdast-util-gridtables": "1.0.5",
|
|
52
52
|
"@adobe/remark-gridtables": "1.0.1",
|
|
53
53
|
"form-data": "4.0.0",
|
|
@@ -147,7 +147,7 @@ describe('PageImporter tests - fixtures', () => {
|
|
|
147
147
|
|
|
148
148
|
const md = await storageHandler.get(results[0].md);
|
|
149
149
|
const expectedMD = await fs.readFile(path.resolve(__dirname, 'fixtures', `${feature}.spec.md`), 'utf-8');
|
|
150
|
-
strictEqual(md.trim(), expectedMD.trim(), '
|
|
150
|
+
strictEqual(md.trim(), expectedMD.trim(), 'imported md is expected one');
|
|
151
151
|
};
|
|
152
152
|
|
|
153
153
|
it('import - tables', async () => {
|