omnius 1.0.278 → 1.0.279
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.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -646642,7 +646642,7 @@ var init_stream_renderer = __esm({
|
|
|
646642
646642
|
const isFirst = i2 === 0;
|
|
646643
646643
|
const isLast = i2 === lines.length - 1;
|
|
646644
646644
|
const lp = isBlockquote && !isFirst ? " │ " : isFirst ? usePrefix : " ";
|
|
646645
|
-
const chunk = isBlockquote && !isFirst ? "> " + lines[i2] : lines[i2];
|
|
646645
|
+
const chunk = isBlockquote && !isFirst ? "> " + lines[i2].replace(/^\s+/, "") : lines[i2];
|
|
646646
646646
|
const needsNewline = !isLast || trailingNewline;
|
|
646647
646647
|
this.writeRaw(
|
|
646648
646648
|
dimText(lp) + highlight(chunk) + (needsNewline ? "\n" : "")
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.279",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.279",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED