@mono-labs/cli 0.0.208 → 0.0.209

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.
@@ -472,8 +472,8 @@ async function main() {
472
472
  }
473
473
  }
474
474
  const parts = [];
475
- parts.push(`# Mono Command-Line Reference
476
-
475
+ parts.push(`# ⚙️ Command Line Reference
476
+
477
477
  > Generated by \`scripts/generate-readme.mjs\`.
478
478
  > Update \`.mono/config.json\`, \`.mono/*.json\`, and workspace package scripts to change this output.
479
479
 
@@ -54,6 +54,6 @@ async function generateDocsIndex({ docsDir, excludeFile, }) {
54
54
  links.sort((a, b) => a.localeCompare(b));
55
55
  // Append Back to Readme (hardcoded)
56
56
  links.push('');
57
- links.push('[Back to Readme](../README.md)');
57
+ links.push('🏠 ← [Back to README](../README.md)');
58
58
  return links.join('\n');
59
59
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.208",
3
+ "version": "0.0.209",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/types.d.ts",
@@ -624,8 +624,8 @@ async function main(): Promise<void> {
624
624
  }
625
625
 
626
626
  const parts: string[] = [];
627
- parts.push(`# Mono Command-Line Reference
628
-
627
+ parts.push(`# ⚙️ Command Line Reference
628
+
629
629
  > Generated by \`scripts/generate-readme.mjs\`.
630
630
  > Update \`.mono/config.json\`, \`.mono/*.json\`, and workspace package scripts to change this output.
631
631
 
@@ -64,7 +64,7 @@ export async function generateDocsIndex({
64
64
 
65
65
  // Append Back to Readme (hardcoded)
66
66
  links.push('');
67
- links.push('[Back to Readme](../README.md)');
68
67
 
68
+ links.push('🏠 ← [Back to README](../README.md)');
69
69
  return links.join('\n');
70
70
  }