rehype-html-blocks
Advanced tools
Comparing version 0.0.23 to 0.0.24
{ | ||
"name": "rehype-html-blocks", | ||
"version": "0.0.23", | ||
"version": "0.0.24", | ||
"repository": { | ||
@@ -15,3 +15,3 @@ "url": "https://github.com/zestedesavoir/zmarkdown/tree/master/packages/rehype-html-blocks", | ||
"scripts": { | ||
"pretest": "eslint src", | ||
"pretest": "eslint .", | ||
"prepare": "del-cli dist && cross-env BABEL_ENV=production babel src --out-dir dist", | ||
@@ -48,3 +48,3 @@ "test": "jest", | ||
"rehype-stringify": "^3.0.0", | ||
"remark-parse": "^4.0.0", | ||
"remark-parse": "^5.0.0", | ||
"remark-rehype": "^3.0.0", | ||
@@ -51,0 +51,0 @@ "unified": "^6.1.5" |
@@ -36,3 +36,3 @@ const visit = require('unist-util-visit') | ||
'select', | ||
'textarea' | ||
'textarea', | ||
] | ||
@@ -51,3 +51,3 @@ | ||
type: 'text', | ||
value: node.value | ||
value: node.value, | ||
} | ||
@@ -62,4 +62,4 @@ | ||
type: 'text', | ||
value: node.value | ||
}] | ||
value: node.value, | ||
}], | ||
} | ||
@@ -66,0 +66,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4142