@voodocs/cli 3.0.2 → 3.0.3
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/lib/cli/__init__.py
CHANGED
|
@@ -435,18 +435,19 @@ def format_context_as_markdown(context: ContextFile) -> str:
|
|
|
435
435
|
if module.description:
|
|
436
436
|
lines.append(f"**Description:** {module.description}")
|
|
437
437
|
lines.append("")
|
|
438
|
+
if module.path:
|
|
439
|
+
lines.append(f"**Path:** {module.path}")
|
|
440
|
+
lines.append("")
|
|
441
|
+
if module.language:
|
|
442
|
+
lines.append(f"**Language:** {module.language}")
|
|
443
|
+
lines.append("")
|
|
438
444
|
if module.dependencies:
|
|
439
445
|
lines.append(f"**Dependencies:** {', '.join(module.dependencies)}")
|
|
440
446
|
lines.append("")
|
|
441
|
-
if module.
|
|
442
|
-
lines.append("**
|
|
443
|
-
for
|
|
444
|
-
lines.append(f"- {
|
|
445
|
-
lines.append("")
|
|
446
|
-
if module.invariants:
|
|
447
|
-
lines.append("**Invariants:**")
|
|
448
|
-
for invariant in module.invariants:
|
|
449
|
-
lines.append(f"- {invariant}")
|
|
447
|
+
if module.public_api:
|
|
448
|
+
lines.append("**Public API:**")
|
|
449
|
+
for api in module.public_api:
|
|
450
|
+
lines.append(f"- {api}")
|
|
450
451
|
lines.append("")
|
|
451
452
|
lines.append("---")
|
|
452
453
|
lines.append("")
|
package/package.json
CHANGED