unist-util-inspect
Advanced tools
Comparing version 3.0.0 to 4.0.0
@@ -5,2 +5,7 @@ <!--remark setext--> | ||
4.0.0 / 2016-04-12 | ||
================== | ||
* Update representation of void nodes ([`3a8d77e`](https://github.com/wooorm/unist-util-inspect/commit/3a8d77e)) | ||
3.0.0 / 2016-02-16 | ||
@@ -7,0 +12,0 @@ ================== |
@@ -181,5 +181,5 @@ /** | ||
if (node.children && node.children.length) { | ||
if (node.children) { | ||
log += dim('[') + yellow(node.children.length) + dim(']'); | ||
} else { | ||
} else if (typeof node.value === 'string') { | ||
log += dim(': ') + green(JSON.stringify(node.value)); | ||
@@ -186,0 +186,0 @@ } |
{ | ||
"name": "unist-util-inspect", | ||
"version": "3.0.0", | ||
"version": "4.0.0", | ||
"description": "Unist node inspector", | ||
@@ -13,3 +13,3 @@ "license": "MIT", | ||
"dependencies": { | ||
"is-empty": "0.0.1" | ||
"is-empty": "1.0.0" | ||
}, | ||
@@ -42,3 +42,3 @@ "files": [ | ||
"remark-validate-links": "^3.0.0", | ||
"retext": "^1.0.0", | ||
"retext": "^2.0.0", | ||
"tape": "^4.4.0" | ||
@@ -45,0 +45,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
13710
+ Addedis-empty@1.0.0(transitive)
- Removedis-empty@0.0.1(transitive)
Updatedis-empty@1.0.0