@adobe/helix-markdown-support 6.1.0 → 6.1.2
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/.circleci/config.yml +1 -1
- package/.eslintrc.cjs +0 -12
- package/CHANGELOG.md +14 -0
- package/package.json +21 -23
package/.circleci/config.yml
CHANGED
package/.eslintrc.cjs
CHANGED
|
@@ -13,16 +13,4 @@
|
|
|
13
13
|
module.exports = {
|
|
14
14
|
root: true,
|
|
15
15
|
extends: '@adobe/helix',
|
|
16
|
-
env: {
|
|
17
|
-
node: true,
|
|
18
|
-
es6: true,
|
|
19
|
-
},
|
|
20
|
-
parserOptions: {
|
|
21
|
-
sourceType: 'module',
|
|
22
|
-
ecmaVersion: 2020,
|
|
23
|
-
},
|
|
24
|
-
rules: {
|
|
25
|
-
'import/extensions': 0,
|
|
26
|
-
'import/prefer-default-export': 0,
|
|
27
|
-
},
|
|
28
16
|
};
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [6.1.2](https://github.com/adobe/helix-markdown-support/compare/v6.1.1...v6.1.2) (2023-05-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency micromark-extension-gfm-table to v1.0.6 ([961df24](https://github.com/adobe/helix-markdown-support/commit/961df243ab13bb9b3b1a726aa6f0675d6d9d5f07))
|
|
7
|
+
|
|
8
|
+
## [6.1.1](https://github.com/adobe/helix-markdown-support/compare/v6.1.0...v6.1.1) (2023-01-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update external fixes ([060a182](https://github.com/adobe/helix-markdown-support/commit/060a18218b0a99b3e2482308debd51d25bdeedc7))
|
|
14
|
+
|
|
1
15
|
# [6.1.0](https://github.com/adobe/helix-markdown-support/compare/v6.0.2...v6.1.0) (2023-01-20)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-markdown-support",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.2",
|
|
4
4
|
"description": "Helix Markdown Support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -27,22 +27,22 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"hast-util-to-html": "8.0.4",
|
|
29
29
|
"js-yaml": "4.1.0",
|
|
30
|
-
"mdast-util-gfm-footnote": "1.0.
|
|
31
|
-
"mdast-util-gfm-strikethrough": "1.0.
|
|
32
|
-
"mdast-util-gfm-table": "1.0.
|
|
33
|
-
"mdast-util-gfm-task-list-item": "1.0.
|
|
34
|
-
"mdast-util-phrasing": "3.0.
|
|
35
|
-
"mdast-util-to-hast": "12.
|
|
36
|
-
"micromark-extension-gfm-footnote": "1.0
|
|
37
|
-
"micromark-extension-gfm-strikethrough": "1.0.
|
|
38
|
-
"micromark-extension-gfm-table": "1.0.
|
|
39
|
-
"micromark-extension-gfm-tagfilter": "1.0.
|
|
40
|
-
"micromark-extension-gfm-task-list-item": "1.0.
|
|
30
|
+
"mdast-util-gfm-footnote": "1.0.2",
|
|
31
|
+
"mdast-util-gfm-strikethrough": "1.0.3",
|
|
32
|
+
"mdast-util-gfm-table": "1.0.7",
|
|
33
|
+
"mdast-util-gfm-task-list-item": "1.0.2",
|
|
34
|
+
"mdast-util-phrasing": "3.0.1",
|
|
35
|
+
"mdast-util-to-hast": "12.3.0",
|
|
36
|
+
"micromark-extension-gfm-footnote": "1.1.0",
|
|
37
|
+
"micromark-extension-gfm-strikethrough": "1.0.5",
|
|
38
|
+
"micromark-extension-gfm-table": "1.0.6",
|
|
39
|
+
"micromark-extension-gfm-tagfilter": "1.0.2",
|
|
40
|
+
"micromark-extension-gfm-task-list-item": "1.0.4",
|
|
41
41
|
"micromark-util-character": "1.1.0",
|
|
42
42
|
"micromark-util-combine-extensions": "1.0.0",
|
|
43
43
|
"micromark-util-symbol": "1.0.1",
|
|
44
44
|
"unist-util-find": "1.0.2",
|
|
45
|
-
"unist-util-visit": "4.1.
|
|
45
|
+
"unist-util-visit": "4.1.2"
|
|
46
46
|
},
|
|
47
47
|
"mocha": {
|
|
48
48
|
"spec": "test/**/*.test.js",
|
|
@@ -58,17 +58,15 @@
|
|
|
58
58
|
"node": ">=14"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@adobe/eslint-config-helix": "
|
|
62
|
-
"@adobe/remark-gridtables": "1.0.
|
|
63
|
-
"@semantic-release/changelog": "6.0.
|
|
61
|
+
"@adobe/eslint-config-helix": "2.0.2",
|
|
62
|
+
"@adobe/remark-gridtables": "1.0.2",
|
|
63
|
+
"@semantic-release/changelog": "6.0.3",
|
|
64
64
|
"@semantic-release/git": "10.0.1",
|
|
65
|
-
"c8": "7.
|
|
66
|
-
"eslint": "8.
|
|
67
|
-
"eslint-plugin-header": "3.1.1",
|
|
68
|
-
"eslint-plugin-import": "2.27.4",
|
|
65
|
+
"c8": "7.13.0",
|
|
66
|
+
"eslint": "8.40.0",
|
|
69
67
|
"husky": "8.0.3",
|
|
70
68
|
"junit-report-builder": "3.0.1",
|
|
71
|
-
"lint-staged": "13.
|
|
69
|
+
"lint-staged": "13.2.2",
|
|
72
70
|
"mdast-builder": "1.1.1",
|
|
73
71
|
"mocha": "10.2.0",
|
|
74
72
|
"mocha-multi-reporters": "1.5.1",
|
|
@@ -78,9 +76,9 @@
|
|
|
78
76
|
"remark-parse": "10.0.1",
|
|
79
77
|
"remark-rehype": "10.1.0",
|
|
80
78
|
"remark-stringify": "10.0.2",
|
|
81
|
-
"semantic-release": "
|
|
79
|
+
"semantic-release": "21.0.2",
|
|
82
80
|
"unified": "10.1.2",
|
|
83
|
-
"unist-util-inspect": "7.0.
|
|
81
|
+
"unist-util-inspect": "7.0.2"
|
|
84
82
|
},
|
|
85
83
|
"lint-staged": {
|
|
86
84
|
"*.js": "eslint"
|