webpipe-js 2.0.47 → 2.0.48

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/index.cjs CHANGED
@@ -1798,7 +1798,6 @@ function prettyPrint(program) {
1798
1798
  const shouldAddBlankLine = () => {
1799
1799
  if (!nextItem) return false;
1800
1800
  if (entry.type === "comment") {
1801
- if (nextItem.type === "comment") return false;
1802
1801
  return nextItem.lineNumber - entry.lineNumber > 1;
1803
1802
  }
1804
1803
  if (entry.type === "variable") {
package/dist/index.mjs CHANGED
@@ -1745,7 +1745,6 @@ function prettyPrint(program) {
1745
1745
  const shouldAddBlankLine = () => {
1746
1746
  if (!nextItem) return false;
1747
1747
  if (entry.type === "comment") {
1748
- if (nextItem.type === "comment") return false;
1749
1748
  return nextItem.lineNumber - entry.lineNumber > 1;
1750
1749
  }
1751
1750
  if (entry.type === "variable") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webpipe-js",
3
- "version": "2.0.47",
3
+ "version": "2.0.48",
4
4
  "description": "Web Pipe parser",
5
5
  "license": "ISC",
6
6
  "author": "William Cotton",