@adobe/helix-importer 2.2.2 → 2.2.3

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.2.3](https://github.com/adobe/helix-importer/compare/v2.2.2...v2.2.3) (2022-11-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @adobe/helix-markdown-support to v6 ([#39](https://github.com/adobe/helix-importer/issues/39)) ([201b2e7](https://github.com/adobe/helix-importer/commit/201b2e79753f7dcd7287f8d81fc65c8c7b2d7187))
7
+
1
8
  ## [2.2.2](https://github.com/adobe/helix-importer/compare/v2.2.1...v2.2.2) (2022-11-19)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-importer",
3
- "version": "2.2.2",
3
+ "version": "2.2.3",
4
4
  "description": "Helix Importer tool: create md / docx from html",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -46,8 +46,10 @@
46
46
  },
47
47
  "license": "Apache-2.0",
48
48
  "dependencies": {
49
- "@adobe/helix-markdown-support": "5.0.10",
49
+ "@adobe/helix-markdown-support": "6.0.0",
50
50
  "@adobe/helix-md2docx": "2.0.22",
51
+ "@adobe/mdast-util-gridtables": "1.0.3",
52
+ "@adobe/remark-gridtables": "1.0.0",
51
53
  "form-data": "4.0.0",
52
54
  "fs-extra": "10.1.0",
53
55
  "hast-util-to-html": "8.0.3",
@@ -22,7 +22,7 @@ import rehype2remark from 'rehype-remark';
22
22
  import stringify from 'remark-stringify';
23
23
  import fs from 'fs-extra';
24
24
  import { md2docx } from '@adobe/helix-md2docx';
25
- import { remarkGridTable } from '@adobe/helix-markdown-support/gridtable';
25
+ import remarkGridTable from '@adobe/remark-gridtables';
26
26
  import { imageReferences } from '@adobe/helix-markdown-support';
27
27
  import gridtableHandlers from './hast-to-mdast-gridtable-handlers.js';
28
28
  import Utils from '../utils/Utils.js';
@@ -17,7 +17,7 @@ import {
17
17
  TYPE_HEADER,
18
18
  TYPE_ROW,
19
19
  TYPE_TABLE,
20
- } from '@adobe/helix-markdown-support/gridtable';
20
+ } from '@adobe/mdast-util-gridtables';
21
21
 
22
22
  function convert(type) {
23
23
  return (h, node) => h(node, type, all(h, node));