@adobe/helix-importer 3.4.91 → 3.4.93

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
+ ## [3.4.93](https://github.com/adobe/helix-importer/compare/v3.4.92...v3.4.93) (2025-06-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([#548](https://github.com/adobe/helix-importer/issues/548)) ([361c8a3](https://github.com/adobe/helix-importer/commit/361c8a3e40bcf87caeedfa2449f40a419570bed0))
7
+
8
+ ## [3.4.92](https://github.com/adobe/helix-importer/compare/v3.4.91...v3.4.92) (2025-05-30)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update adobe md2jcr ([#545](https://github.com/adobe/helix-importer/issues/545)) ([d7cc75b](https://github.com/adobe/helix-importer/commit/d7cc75b7868f0a879eb47806ee946a75cd4c7a88))
14
+
1
15
  ## [3.4.91](https://github.com/adobe/helix-importer/compare/v3.4.90...v3.4.91) (2025-05-27)
2
16
 
3
17
 
@@ -0,0 +1,25 @@
1
+ /*
2
+ * Copyright 2025 Adobe. All rights reserved.
3
+ * This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ * you may not use this file except in compliance with the License. You may obtain a copy
5
+ * of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ *
7
+ * Unless required by applicable law or agreed to in writing, software distributed under
8
+ * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ * OF ANY KIND, either express or implied. See the License for the specific language
10
+ * governing permissions and limitations under the License.
11
+ */
12
+ import { defineConfig, globalIgnores } from '@eslint/config-helpers';
13
+ import { recommended, source, test } from '@adobe/eslint-config-helix';
14
+
15
+ export default defineConfig([
16
+ globalIgnores([
17
+ '.vscode/*',
18
+ 'coverage/*',
19
+ ]),
20
+ {
21
+ extends: [recommended],
22
+ },
23
+ source,
24
+ test,
25
+ ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-importer",
3
- "version": "3.4.91",
3
+ "version": "3.4.93",
4
4
  "description": "Helix Importer tool: create md / docx from html",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -26,9 +26,10 @@
26
26
  "*.js": "eslint"
27
27
  },
28
28
  "devDependencies": {
29
- "@adobe/eslint-config-helix": "2.0.9",
29
+ "@adobe/eslint-config-helix": "3.0.3",
30
30
  "@adobe/helix-docx2md": "1.6.27",
31
- "@adobe/helix-mediahandler": "2.7.8",
31
+ "@adobe/helix-mediahandler": "2.7.9",
32
+ "@eslint/config-helpers": "0.2.2",
32
33
  "@esm-bundle/chai": "4.3.4-fix.0",
33
34
  "@semantic-release/changelog": "6.0.3",
34
35
  "@semantic-release/exec": "6.0.3",
@@ -39,11 +40,11 @@
39
40
  "c8": "10.1.3",
40
41
  "chai": "5.2.0",
41
42
  "dirname-filename-esm": "1.1.2",
42
- "eslint": "8.57.1",
43
+ "eslint": "9.4.0",
43
44
  "husky": "9.1.7",
44
45
  "jsdom": "26.1.0",
45
46
  "lint-staged": "15.5.2",
46
- "mocha": "11.5.0",
47
+ "mocha": "11.6.0",
47
48
  "mocha-multi-reporters": "1.5.1",
48
49
  "mock-fs": "5.5.0",
49
50
  "remark-parse": "11.0.0",
@@ -54,10 +55,10 @@
54
55
  "dependencies": {
55
56
  "@adobe/helix-markdown-support": "7.1.12",
56
57
  "@adobe/helix-md2docx": "2.2.13",
57
- "@adobe/helix-md2jcr": "1.1.20",
58
+ "@adobe/helix-md2jcr": "1.1.21",
58
59
  "@adobe/mdast-util-gridtables": "4.0.12",
59
60
  "@adobe/remark-gridtables": "3.0.13",
60
- "form-data": "4.0.2",
61
+ "form-data": "4.0.3",
61
62
  "fs-extra": "11.3.0",
62
63
  "hast-util-to-mdast": "10.1.2",
63
64
  "node-fetch": "3.3.2",
@@ -10,8 +10,6 @@
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
12
 
13
- /* global beforeEach, afterEach */
14
-
15
13
  import mockfs from 'mock-fs';
16
14
 
17
15
  import { strictEqual, ok } from 'assert';