@adobe/helix-markdown-support 7.1.12 → 7.1.13

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.
@@ -10,11 +10,11 @@ jobs:
10
10
  name: Test
11
11
  runs-on: ubuntu-latest
12
12
  steps:
13
- - uses: actions/checkout@v4
13
+ - uses: actions/checkout@v5
14
14
  - name: Use Node.js 20.x
15
- uses: actions/setup-node@v4
15
+ uses: actions/setup-node@v5
16
16
  with:
17
- node-version: '20.x'
17
+ node-version: '22.x'
18
18
  - run: npm ci
19
19
  - run: npm run lint
20
20
  - run: npm test
@@ -33,11 +33,11 @@ jobs:
33
33
  needs: test
34
34
  if: github.ref == 'refs/heads/main'
35
35
  steps:
36
- - uses: actions/checkout@v4
36
+ - uses: actions/checkout@v5
37
37
  - name: Use Node.js 20.x
38
- uses: actions/setup-node@v4
38
+ uses: actions/setup-node@v5
39
39
  with:
40
- node-version: '20.x'
40
+ node-version: '22.x'
41
41
  - run: npm ci
42
42
  - run: npm run semantic-release
43
43
  env:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [7.1.13](https://github.com/adobe/helix-markdown-support/compare/v7.1.12...v7.1.13) (2025-10-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * use * for emphasis ([#334](https://github.com/adobe/helix-markdown-support/issues/334)) ([2c4c336](https://github.com/adobe/helix-markdown-support/commit/2c4c3369daa205a414f79820590e74be82cdec2c))
7
+
1
8
  ## [7.1.12](https://github.com/adobe/helix-markdown-support/compare/v7.1.11...v7.1.12) (2025-02-24)
2
9
 
3
10
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2019 Adobe. All rights reserved.
2
+ * Copyright 2025 Adobe. All rights reserved.
3
3
  * This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
4
  * you may not use this file except in compliance with the License. You may obtain a copy
5
5
  * of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -9,8 +9,24 @@
9
9
  * OF ANY KIND, either express or implied. See the License for the specific language
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
+ import { defineConfig, globalIgnores } from '@eslint/config-helpers'
13
+ import { recommended, source, test } from '@adobe/eslint-config-helix';
12
14
 
13
- module.exports = {
14
- root: true,
15
- extends: '@adobe/helix',
16
- };
15
+ export default defineConfig([
16
+ globalIgnores([
17
+ '.vscode/*',
18
+ 'coverage/*',
19
+ ]),
20
+ {
21
+ rules: {
22
+ // see https://github.com/import-js/eslint-plugin-import/issues/1868
23
+ 'import/no-unresolved': ['error', { ignore: ['micromark-util-symbol'] }],
24
+ },
25
+ plugins: {
26
+ import: recommended.plugins.import,
27
+ },
28
+ extends: [recommended],
29
+ },
30
+ source,
31
+ test,
32
+ ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-markdown-support",
3
- "version": "7.1.12",
3
+ "version": "7.1.13",
4
4
  "description": "Helix Markdown Support",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -59,25 +59,26 @@
59
59
  "node": ">=14"
60
60
  },
61
61
  "devDependencies": {
62
- "@adobe/eslint-config-helix": "2.0.9",
63
- "@adobe/remark-gridtables": "3.0.9",
62
+ "@adobe/eslint-config-helix": "3.0.10",
63
+ "@adobe/remark-gridtables": "3.0.14",
64
+ "@eslint/config-helpers": "0.3.1",
64
65
  "@semantic-release/changelog": "6.0.3",
65
66
  "@semantic-release/git": "10.0.1",
66
67
  "c8": "10.1.3",
67
- "eslint": "8.57.1",
68
+ "eslint": "9.4.0",
68
69
  "husky": "9.1.7",
69
70
  "junit-report-builder": "5.1.1",
70
- "lint-staged": "15.4.3",
71
+ "lint-staged": "16.1.6",
71
72
  "mdast-builder": "1.1.1",
72
- "mocha": "11.1.0",
73
+ "mocha": "11.7.2",
73
74
  "mocha-multi-reporters": "1.5.1",
74
75
  "rehype-format": "5.0.1",
75
76
  "rehype-stringify": "10.0.1",
76
77
  "remark-gfm": "4.0.1",
77
78
  "remark-parse": "11.0.0",
78
- "remark-rehype": "11.1.1",
79
+ "remark-rehype": "11.1.2",
79
80
  "remark-stringify": "11.0.0",
80
- "semantic-release": "24.2.3",
81
+ "semantic-release": "24.2.8",
81
82
  "unified": "11.0.5",
82
83
  "unist-util-inspect": "8.1.0"
83
84
  },