@mono-labs/cli 0.0.211 → 0.0.212

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.
@@ -48,6 +48,9 @@ async function generateDocsIndex({ docsDir, excludeFile, }) {
48
48
  continue;
49
49
  const rawTitle = match[1].trim();
50
50
  const relativeLink = `./${entry.name}`;
51
+ links.push('\n');
52
+ links.push('---');
53
+ links.push('\n');
51
54
  /**
52
55
  * Detect leading non-alphanumeric characters (emoji / symbols).
53
56
  * This matches one or more Unicode characters that are NOT letters or numbers.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.211",
3
+ "version": "0.0.212",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/types.d.ts",
@@ -56,6 +56,10 @@ export async function generateDocsIndex({
56
56
  const rawTitle = match[1].trim();
57
57
  const relativeLink = `./${entry.name}`;
58
58
 
59
+ links.push('\n');
60
+ links.push('---');
61
+ links.push('\n');
62
+
59
63
  /**
60
64
  * Detect leading non-alphanumeric characters (emoji / symbols).
61
65
  * This matches one or more Unicode characters that are NOT letters or numbers.