sequoia-cli 0.4.0-alpha.0 → 0.4.0
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.
|
@@ -800,9 +800,9 @@ class SequoiaComments extends BaseElement {
|
|
|
800
800
|
* Render a single comment
|
|
801
801
|
* @param {any} post - Post data
|
|
802
802
|
* @param {boolean} showThreadLine - Whether to show the connecting thread line
|
|
803
|
-
* @param {number}
|
|
803
|
+
* @param {number} _index - Index in the flattened thread (0 = top-level)
|
|
804
804
|
*/
|
|
805
|
-
renderComment(post, showThreadLine = false,
|
|
805
|
+
renderComment(post, showThreadLine = false, _index = 0) {
|
|
806
806
|
const author = post.author;
|
|
807
807
|
const displayName = author.displayName || author.handle;
|
|
808
808
|
const avatarHtml = author.avatar
|
package/dist/index.js
CHANGED
|
@@ -93241,8 +93241,8 @@ ${l}
|
|
|
93241
93241
|
} }).prompt();
|
|
93242
93242
|
|
|
93243
93243
|
// src/commands/add.ts
|
|
93244
|
-
import { fileURLToPath } from "url";
|
|
93245
|
-
import { dirname as dirname2 } from "path";
|
|
93244
|
+
import { fileURLToPath } from "node:url";
|
|
93245
|
+
import { dirname as dirname2 } from "node:path";
|
|
93246
93246
|
|
|
93247
93247
|
// src/lib/config.ts
|
|
93248
93248
|
import * as fs from "node:fs/promises";
|