@readme/markdown 6.48.2 → 6.48.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/dist/main.js +1 -1
- package/dist/main.node.js +1 -1
- package/package.json +10 -10
package/dist/main.js
CHANGED
|
@@ -29310,7 +29310,7 @@ module.exports.sanitize = function (sanitizeSchema) {
|
|
|
29310
29310
|
*/
|
|
29311
29311
|
function toString(node) {
|
|
29312
29312
|
// eslint-disable-next-line no-use-before-define
|
|
29313
|
-
return 'children' in node ? all(node) : one(node);
|
|
29313
|
+
return 'children' in node ? all(node) || one(node) : one(node);
|
|
29314
29314
|
}
|
|
29315
29315
|
|
|
29316
29316
|
function one(node) {
|
package/dist/main.node.js
CHANGED
|
@@ -12132,7 +12132,7 @@ module.exports.sanitize = function (sanitizeSchema) {
|
|
|
12132
12132
|
*/
|
|
12133
12133
|
function toString(node) {
|
|
12134
12134
|
// eslint-disable-next-line no-use-before-define
|
|
12135
|
-
return 'children' in node ? all(node) : one(node);
|
|
12135
|
+
return 'children' in node ? all(node) || one(node) : one(node);
|
|
12136
12136
|
}
|
|
12137
12137
|
|
|
12138
12138
|
function one(node) {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@readme/markdown",
|
|
3
3
|
"description": "ReadMe's React-based Markdown parser",
|
|
4
4
|
"author": "Rafe Goldberg <rafe@readme.io>",
|
|
5
|
-
"version": "6.48.
|
|
5
|
+
"version": "6.48.3",
|
|
6
6
|
"main": "dist/main.node.js",
|
|
7
7
|
"browser": "dist/main.js",
|
|
8
8
|
"files": [
|
|
@@ -73,19 +73,19 @@
|
|
|
73
73
|
"@commitlint/config-angular": "^17.0.3",
|
|
74
74
|
"@commitlint/config-conventional": "^17.0.3",
|
|
75
75
|
"@hot-loader/react-dom": "^16.14.0",
|
|
76
|
-
"@readme/eslint-config": "^
|
|
76
|
+
"@readme/eslint-config": "^9.0.0",
|
|
77
77
|
"@readme/variable": "15.1.0",
|
|
78
78
|
"@semantic-release/changelog": "^6.0.1",
|
|
79
79
|
"@semantic-release/git": "^10.0.1",
|
|
80
80
|
"@testing-library/jest-dom": "^5.16.4",
|
|
81
81
|
"@testing-library/react": "^12.1.2",
|
|
82
|
-
"@tippyjs/react": "^4.
|
|
83
|
-
"babel-jest": "^28.1.
|
|
82
|
+
"@tippyjs/react": "^4.2.6",
|
|
83
|
+
"babel-jest": "^28.1.3",
|
|
84
84
|
"babel-loader": "^8.2.5",
|
|
85
|
-
"codemirror": "^5.
|
|
86
|
-
"core-js": "^3.
|
|
85
|
+
"codemirror": "^5.54.0",
|
|
86
|
+
"core-js": "^3.24.1",
|
|
87
87
|
"css-loader": "^6.7.1",
|
|
88
|
-
"eslint": "^8.
|
|
88
|
+
"eslint": "^8.21.0",
|
|
89
89
|
"husky": "^8.0.1",
|
|
90
90
|
"identity-obj-proxy": "^3.0.0",
|
|
91
91
|
"jest": "^28.1.3",
|
|
@@ -96,16 +96,16 @@
|
|
|
96
96
|
"mini-css-extract-plugin": "^2.6.1",
|
|
97
97
|
"node-sass": "^7.0.1",
|
|
98
98
|
"prettier": "^2.7.1",
|
|
99
|
-
"puppeteer": "^15.
|
|
99
|
+
"puppeteer": "^15.5.0",
|
|
100
100
|
"react": "^16.14.0",
|
|
101
101
|
"react-dom": "^16.14.0",
|
|
102
102
|
"react-hot-loader": "^4.13.0",
|
|
103
103
|
"regenerator-runtime": "^0.13.9",
|
|
104
|
-
"sass-loader": "^
|
|
104
|
+
"sass-loader": "^13.0.2",
|
|
105
105
|
"semantic-release": "^19.0.3",
|
|
106
106
|
"string.prototype.trimend": "^1.0.5",
|
|
107
107
|
"terser-webpack-plugin": "^5.3.3",
|
|
108
|
-
"webpack": "^5.
|
|
108
|
+
"webpack": "^5.74.0",
|
|
109
109
|
"webpack-cli": "^4.10.0",
|
|
110
110
|
"webpack-dev-server": "^4.9.3",
|
|
111
111
|
"webpack-merge": "^5.8.0"
|