@knowcode/doc-builder 1.5.22 → 1.5.23

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/README.md CHANGED
@@ -64,7 +64,6 @@ This aligns perfectly with our mission: beautiful documentation should be access
64
64
  - 🚀 **Zero Configuration** - Works out of the box
65
65
  - 📝 **Markdown Support** - Full GitHub Flavored Markdown
66
66
  - 🎨 **Beautiful Theme** - Notion-inspired design
67
- - 🔄 **Live Reload** - Hot reloading dev server
68
67
  - 📦 **Self-Contained** - No setup required
69
68
  - 🤖 **Claude Code Ready** - AI-optimized workflows
70
69
 
@@ -147,9 +146,6 @@ npx @knowcode/doc-builder@latest deploy
147
146
  # Build static HTML
148
147
  npx @knowcode/doc-builder@latest build
149
148
 
150
- # Development server
151
- npx @knowcode/doc-builder@latest dev
152
-
153
149
  # Show help
154
150
  npx @knowcode/doc-builder@latest
155
151
  ```
@@ -166,7 +162,6 @@ npm install --save-dev @knowcode/doc-builder@latest
166
162
  # Use shorter commands
167
163
  doc-builder deploy
168
164
  doc-builder build
169
- doc-builder dev
170
165
  doc-builder --help
171
166
  ```
172
167
  *Better for regular use & offline access*
@@ -206,8 +201,8 @@ module.exports = {
206
201
  outputDir: 'html',
207
202
 
208
203
  // Site info
209
- siteName: 'My Documentation',
210
- siteDescription: 'Documentation for my project',
204
+ siteName: '@knowcode/doc-builder',
205
+ siteDescription: 'Transform markdown into beautiful documentation',
211
206
 
212
207
  // Production URL (optional)
213
208
  productionUrl: 'https://my-docs.vercel.app', // Custom URL to display after deployment
@@ -238,7 +233,6 @@ module.exports = {
238
233
  | Command | Purpose |
239
234
  |---------|---------|
240
235
  | `build` | Generate static HTML |
241
- | `dev` | Start dev server |
242
236
  | `deploy` | Deploy to Vercel |
243
237
  | `init` | Initialize project |
244
238
 
@@ -1,5 +1,5 @@
1
1
  module.exports = {
2
- "siteName": "Doc Builder",
2
+ "siteName": "@knowcode/doc-builder",
3
3
  "siteDescription": "Beautiful documentation with the least effort possible",
4
4
  "docsDir": "docs",
5
5
  "outputDir": "html",
package/html/README.html CHANGED
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.119Z",
66
- "dateModified": "2025-07-22T18:55:04.119Z",
65
+ "datePublished": "2025-07-22T19:23:11.898Z",
66
+ "dateModified": "2025-07-22T19:23:11.898Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/README.html"
@@ -96,7 +96,7 @@
96
96
 
97
97
  <div class="header-actions">
98
98
  <div class="deployment-info">
99
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
99
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
100
100
  </div>
101
101
 
102
102
 
@@ -148,7 +148,7 @@
148
148
  <a href="/README.html" class="nav-item active" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
149
149
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
150
150
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
151
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
151
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
152
152
  <div class="nav-section" data-level="1">
153
153
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
154
154
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -280,29 +280,35 @@
280
280
  </table>
281
281
 
282
282
  <h2><i class="ph ph-gear" aria-label="settings"></i> Configuration</h2>
283
+ <p>Configuration is fully managed through the CLI tools - no manual file editing required! The tool handles all settings automatically during setup and deployment.</p>
283
284
  <table>
284
285
  <tr>
285
286
  <td width="50%">
286
287
 
287
- <h3>Basic Config</h3>
288
- <pre><code class="language-javascript">module.exports = {
289
- siteName: &#39;Your Amazing Docs&#39;,
290
- siteDescription: &#39;Docs developers love&#39;,
288
+ <h3>Basic Config (Reference Only)</h3>
289
+ <pre><code class="language-javascript">// doc-builder.config.js
290
+ // This file is auto-generated and managed by the CLI
291
+ module.exports = {
292
+ siteName: &#39;@knowcode/doc-builder&#39;,
293
+ siteDescription: &#39;Transform markdown into beautiful documentation&#39;,
291
294
  docsDir: &#39;docs&#39;,
292
295
  outputDir: &#39;html&#39;
293
296
  };
294
297
  </code></pre>
298
+ <p><em>The CLI creates and updates this for you</em></p>
295
299
  </td>
296
300
  <td width="50%">
297
301
 
298
- <h3>Advanced Features</h3>
299
- <pre><code class="language-javascript">features: {
302
+ <h3>Advanced Features (Reference Only)</h3>
303
+ <pre><code class="language-javascript">// Also managed via CLI commands
304
+ features: {
300
305
  mermaid: true, // Diagrams
301
306
  darkMode: true, // Theme toggle
302
307
  authentication: true, // Password
303
308
  changelog: true // Auto-generate
304
309
  }
305
310
  </code></pre>
311
+ <p><em>Use <code>init</code> or <code>deploy</code> commands to configure</em></p>
306
312
  </td>
307
313
  </tr>
308
314
  </table>
@@ -330,7 +336,7 @@
330
336
  const docBuilder = require(&#39;@knowcode/doc-builder&#39;);
331
337
 
332
338
  docBuilder.build({
333
- siteName: &#39;My Docs&#39;,
339
+ siteName: &#39;@knowcode/doc-builder&#39;,
334
340
  features: { darkMode: true }
335
341
  });
336
342
  </code></pre>
@@ -1061,13 +1061,13 @@ tr:hover {
1061
1061
  padding: var(--space-4);
1062
1062
  border-radius: var(--radius-lg);
1063
1063
  overflow-x: auto;
1064
- margin: var(--space-4) 0;
1064
+ margin: var(--space-2) 0;
1065
1065
  }
1066
1066
 
1067
1067
  /* Mermaid Full Screen Viewer */
1068
1068
  .mermaid-container {
1069
1069
  position: relative;
1070
- margin: var(--space-6) 0;
1070
+ margin: var(--space-3) 0;
1071
1071
  border: 1px solid var(--color-border-default);
1072
1072
  border-radius: var(--radius-lg);
1073
1073
  overflow: hidden;
@@ -1129,7 +1129,7 @@ tr:hover {
1129
1129
  }
1130
1130
 
1131
1131
  .mermaid-wrapper {
1132
- padding: var(--space-6);
1132
+ padding: var(--space-3);
1133
1133
  overflow: auto;
1134
1134
  max-height: 600px;
1135
1135
  }
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.131Z",
66
- "dateModified": "2025-07-22T18:55:04.131Z",
65
+ "datePublished": "2025-07-22T19:23:11.910Z",
66
+ "dateModified": "2025-07-22T19:23:11.910Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
@@ -96,7 +96,7 @@
96
96
 
97
97
  <div class="header-actions">
98
98
  <div class="deployment-info">
99
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
99
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
100
100
  </div>
101
101
 
102
102
 
@@ -148,7 +148,7 @@
148
148
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
149
149
  <a href="/documentation-index.html" class="nav-item active" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
150
150
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
151
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
151
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
152
152
  <div class="nav-section" data-level="1">
153
153
  <a class="nav-title collapsible" href="#" data-target="nav-guides-1" >
154
154
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.135Z",
66
- "dateModified": "2025-07-22T18:55:04.135Z",
65
+ "datePublished": "2025-07-22T19:23:11.914Z",
66
+ "dateModified": "2025-07-22T19:23:11.914Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/authentication-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -237,7 +237,7 @@
237
237
  <h4>1. Configuration File</h4>
238
238
  <p>Create <code>doc-builder.config.js</code> in your project root:</p>
239
239
  <pre><code class="language-javascript">module.exports = {
240
- siteName: &#39;Private Documentation&#39;,
240
+ siteName: &#39;@knowcode/doc-builder&#39;,
241
241
  siteDescription: &#39;Internal documentation portal&#39;,
242
242
 
243
243
  features: {
@@ -403,7 +403,7 @@
403
403
  <h3>Simple Protected Docs</h3>
404
404
  <pre><code class="language-javascript">// doc-builder.config.js
405
405
  module.exports = {
406
- siteName: &#39;Team Handbook&#39;,
406
+ siteName: &#39;@knowcode/doc-builder&#39;,
407
407
  features: {
408
408
  authentication: true
409
409
  },
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.140Z",
66
- "dateModified": "2025-07-22T18:55:04.140Z",
65
+ "datePublished": "2025-07-22T19:23:11.919Z",
66
+ "dateModified": "2025-07-22T19:23:11.919Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.144Z",
66
- "dateModified": "2025-07-22T18:55:04.144Z",
65
+ "datePublished": "2025-07-22T19:23:11.923Z",
66
+ "dateModified": "2025-07-22T19:23:11.923Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/documentation-standards.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.152Z",
66
- "dateModified": "2025-07-22T18:55:04.152Z",
65
+ "datePublished": "2025-07-22T19:23:11.932Z",
66
+ "dateModified": "2025-07-22T19:23:11.932Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/google-site-verification-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.155Z",
66
- "dateModified": "2025-07-22T18:55:04.155Z",
65
+ "datePublished": "2025-07-22T19:23:11.935Z",
66
+ "dateModified": "2025-07-22T19:23:11.935Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/phosphor-icons-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.159Z",
66
- "dateModified": "2025-07-22T18:55:04.159Z",
65
+ "datePublished": "2025-07-22T19:23:11.939Z",
66
+ "dateModified": "2025-07-22T19:23:11.939Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/seo-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.166Z",
66
- "dateModified": "2025-07-22T18:55:04.166Z",
65
+ "datePublished": "2025-07-22T19:23:11.947Z",
66
+ "dateModified": "2025-07-22T19:23:11.947Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/seo-optimization-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.169Z",
66
- "dateModified": "2025-07-22T18:55:04.169Z",
65
+ "datePublished": "2025-07-22T19:23:11.950Z",
66
+ "dateModified": "2025-07-22T19:23:11.950Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/troubleshooting-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.175Z",
66
- "dateModified": "2025-07-22T18:55:04.175Z",
65
+ "datePublished": "2025-07-22T19:23:11.956Z",
66
+ "dateModified": "2025-07-22T19:23:11.956Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/guides/windows-setup-guide.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
package/html/index.html CHANGED
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.119Z",
66
- "dateModified": "2025-07-22T18:55:04.119Z",
65
+ "datePublished": "2025-07-22T19:23:11.898Z",
66
+ "dateModified": "2025-07-22T19:23:11.898Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/README.html"
@@ -96,7 +96,7 @@
96
96
 
97
97
  <div class="header-actions">
98
98
  <div class="deployment-info">
99
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
99
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
100
100
  </div>
101
101
 
102
102
 
@@ -148,7 +148,7 @@
148
148
  <a href="/README.html" class="nav-item active" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
149
149
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
150
150
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
151
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
151
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
152
152
  <div class="nav-section" data-level="1">
153
153
  <a class="nav-title collapsible expanded" href="#" data-target="nav-guides-1" >
154
154
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -280,29 +280,35 @@
280
280
  </table>
281
281
 
282
282
  <h2><i class="ph ph-gear" aria-label="settings"></i> Configuration</h2>
283
+ <p>Configuration is fully managed through the CLI tools - no manual file editing required! The tool handles all settings automatically during setup and deployment.</p>
283
284
  <table>
284
285
  <tr>
285
286
  <td width="50%">
286
287
 
287
- <h3>Basic Config</h3>
288
- <pre><code class="language-javascript">module.exports = {
289
- siteName: &#39;Your Amazing Docs&#39;,
290
- siteDescription: &#39;Docs developers love&#39;,
288
+ <h3>Basic Config (Reference Only)</h3>
289
+ <pre><code class="language-javascript">// doc-builder.config.js
290
+ // This file is auto-generated and managed by the CLI
291
+ module.exports = {
292
+ siteName: &#39;@knowcode/doc-builder&#39;,
293
+ siteDescription: &#39;Transform markdown into beautiful documentation&#39;,
291
294
  docsDir: &#39;docs&#39;,
292
295
  outputDir: &#39;html&#39;
293
296
  };
294
297
  </code></pre>
298
+ <p><em>The CLI creates and updates this for you</em></p>
295
299
  </td>
296
300
  <td width="50%">
297
301
 
298
- <h3>Advanced Features</h3>
299
- <pre><code class="language-javascript">features: {
302
+ <h3>Advanced Features (Reference Only)</h3>
303
+ <pre><code class="language-javascript">// Also managed via CLI commands
304
+ features: {
300
305
  mermaid: true, // Diagrams
301
306
  darkMode: true, // Theme toggle
302
307
  authentication: true, // Password
303
308
  changelog: true // Auto-generate
304
309
  }
305
310
  </code></pre>
311
+ <p><em>Use <code>init</code> or <code>deploy</code> commands to configure</em></p>
306
312
  </td>
307
313
  </tr>
308
314
  </table>
@@ -330,7 +336,7 @@
330
336
  const docBuilder = require(&#39;@knowcode/doc-builder&#39;);
331
337
 
332
338
  docBuilder.build({
333
- siteName: &#39;My Docs&#39;,
339
+ siteName: &#39;@knowcode/doc-builder&#39;,
334
340
  features: { darkMode: true }
335
341
  });
336
342
  </code></pre>
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.177Z",
66
- "dateModified": "2025-07-22T18:55:04.177Z",
65
+ "datePublished": "2025-07-22T19:23:11.958Z",
66
+ "dateModified": "2025-07-22T19:23:11.958Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/launch/README.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.180Z",
66
- "dateModified": "2025-07-22T18:55:04.180Z",
65
+ "datePublished": "2025-07-22T19:23:11.963Z",
66
+ "dateModified": "2025-07-22T19:23:11.963Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/launch/bubble-plugin-specification.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.184Z",
66
- "dateModified": "2025-07-22T18:55:04.184Z",
65
+ "datePublished": "2025-07-22T19:23:11.968Z",
66
+ "dateModified": "2025-07-22T19:23:11.968Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/launch/go-to-market-strategy.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.188Z",
66
- "dateModified": "2025-07-22T18:55:04.188Z",
65
+ "datePublished": "2025-07-22T19:23:11.972Z",
66
+ "dateModified": "2025-07-22T19:23:11.972Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/launch/launch-announcements.html"
@@ -102,7 +102,7 @@
102
102
 
103
103
  <div class="header-actions">
104
104
  <div class="deployment-info">
105
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
105
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
106
106
  </div>
107
107
 
108
108
 
@@ -154,7 +154,7 @@
154
154
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
155
155
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
156
156
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
157
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
157
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
158
158
  <div class="nav-section" data-level="1">
159
159
  <a class="nav-title collapsible" href="#" data-target="nav-guides-1" >
160
160
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
package/html/sitemap.xml CHANGED
@@ -2,127 +2,127 @@
2
2
  <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3
3
  <url>
4
4
  <loc>https://doc-builder-delta.vercel.app/404.html</loc>
5
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
5
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
6
6
  <changefreq>monthly</changefreq>
7
7
  <priority>0.6</priority>
8
8
  </url>
9
9
  <url>
10
10
  <loc>https://doc-builder-delta.vercel.app/README.html</loc>
11
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
11
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
12
12
  <changefreq>monthly</changefreq>
13
13
  <priority>0.6</priority>
14
14
  </url>
15
15
  <url>
16
16
  <loc>https://doc-builder-delta.vercel.app/claude-workflow-guide.html</loc>
17
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
17
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
18
18
  <changefreq>monthly</changefreq>
19
19
  <priority>0.8</priority>
20
20
  </url>
21
21
  <url>
22
22
  <loc>https://doc-builder-delta.vercel.app/documentation-index.html</loc>
23
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
23
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
24
24
  <changefreq>monthly</changefreq>
25
25
  <priority>0.6</priority>
26
26
  </url>
27
27
  <url>
28
28
  <loc>https://doc-builder-delta.vercel.app/guides/authentication-guide.html</loc>
29
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
29
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
30
30
  <changefreq>monthly</changefreq>
31
31
  <priority>0.8</priority>
32
32
  </url>
33
33
  <url>
34
34
  <loc>https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html</loc>
35
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
35
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
36
36
  <changefreq>monthly</changefreq>
37
37
  <priority>0.8</priority>
38
38
  </url>
39
39
  <url>
40
40
  <loc>https://doc-builder-delta.vercel.app/guides/document-standards.html</loc>
41
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
41
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
42
42
  <changefreq>monthly</changefreq>
43
43
  <priority>0.8</priority>
44
44
  </url>
45
45
  <url>
46
46
  <loc>https://doc-builder-delta.vercel.app/guides/documentation-standards.html</loc>
47
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
47
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
48
48
  <changefreq>monthly</changefreq>
49
49
  <priority>0.8</priority>
50
50
  </url>
51
51
  <url>
52
52
  <loc>https://doc-builder-delta.vercel.app/guides/google-site-verification-guide.html</loc>
53
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
53
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
54
54
  <changefreq>monthly</changefreq>
55
55
  <priority>0.8</priority>
56
56
  </url>
57
57
  <url>
58
58
  <loc>https://doc-builder-delta.vercel.app/guides/phosphor-icons-guide.html</loc>
59
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
59
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
60
60
  <changefreq>monthly</changefreq>
61
61
  <priority>0.8</priority>
62
62
  </url>
63
63
  <url>
64
64
  <loc>https://doc-builder-delta.vercel.app/guides/seo-guide.html</loc>
65
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
65
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
66
66
  <changefreq>monthly</changefreq>
67
67
  <priority>0.8</priority>
68
68
  </url>
69
69
  <url>
70
70
  <loc>https://doc-builder-delta.vercel.app/guides/seo-optimization-guide.html</loc>
71
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
71
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
72
72
  <changefreq>monthly</changefreq>
73
73
  <priority>0.8</priority>
74
74
  </url>
75
75
  <url>
76
76
  <loc>https://doc-builder-delta.vercel.app/guides/troubleshooting-guide.html</loc>
77
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
77
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
78
78
  <changefreq>monthly</changefreq>
79
79
  <priority>0.8</priority>
80
80
  </url>
81
81
  <url>
82
82
  <loc>https://doc-builder-delta.vercel.app/guides/windows-setup-guide.html</loc>
83
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
83
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
84
84
  <changefreq>monthly</changefreq>
85
85
  <priority>0.8</priority>
86
86
  </url>
87
87
  <url>
88
88
  <loc>https://doc-builder-delta.vercel.app/index.html</loc>
89
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
89
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
90
90
  <changefreq>weekly</changefreq>
91
91
  <priority>1.0</priority>
92
92
  </url>
93
93
  <url>
94
94
  <loc>https://doc-builder-delta.vercel.app/launch/README.html</loc>
95
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
95
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
96
96
  <changefreq>monthly</changefreq>
97
97
  <priority>0.6</priority>
98
98
  </url>
99
99
  <url>
100
100
  <loc>https://doc-builder-delta.vercel.app/launch/bubble-plugin-specification.html</loc>
101
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
101
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
102
102
  <changefreq>monthly</changefreq>
103
103
  <priority>0.6</priority>
104
104
  </url>
105
105
  <url>
106
106
  <loc>https://doc-builder-delta.vercel.app/launch/go-to-market-strategy.html</loc>
107
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
107
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
108
108
  <changefreq>monthly</changefreq>
109
109
  <priority>0.6</priority>
110
110
  </url>
111
111
  <url>
112
112
  <loc>https://doc-builder-delta.vercel.app/launch/launch-announcements.html</loc>
113
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
113
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
114
114
  <changefreq>monthly</changefreq>
115
115
  <priority>0.6</priority>
116
116
  </url>
117
117
  <url>
118
118
  <loc>https://doc-builder-delta.vercel.app/vercel-cli-setup-guide.html</loc>
119
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
119
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
120
120
  <changefreq>monthly</changefreq>
121
121
  <priority>0.8</priority>
122
122
  </url>
123
123
  <url>
124
124
  <loc>https://doc-builder-delta.vercel.app/vercel-first-time-setup-guide.html</loc>
125
- <lastmod>2025-07-22T18:55:04.201Z</lastmod>
125
+ <lastmod>2025-07-22T19:23:11.989Z</lastmod>
126
126
  <changefreq>monthly</changefreq>
127
127
  <priority>0.8</priority>
128
128
  </url>
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.190Z",
66
- "dateModified": "2025-07-22T18:55:04.190Z",
65
+ "datePublished": "2025-07-22T19:23:11.974Z",
66
+ "dateModified": "2025-07-22T19:23:11.974Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/vercel-cli-setup-guide.html"
@@ -96,7 +96,7 @@
96
96
 
97
97
  <div class="header-actions">
98
98
  <div class="deployment-info">
99
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
99
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
100
100
  </div>
101
101
 
102
102
 
@@ -148,7 +148,7 @@
148
148
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
149
149
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
150
150
  <a href="/vercel-cli-setup-guide.html" class="nav-item active" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
151
- <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
151
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
152
152
  <div class="nav-section" data-level="1">
153
153
  <a class="nav-title collapsible" href="#" data-target="nav-guides-1" >
154
154
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -3,8 +3,8 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <meta name="description" content="This guide walks you through the streamlined Vercel deployment process when using `@knowcode/doc-builder deploy`. The new Vercel CLI experience has fewer...">
7
- <title>Vercel First-Time Setup Guide - Simplified Process</title>
6
+ <meta name="description" content="This guide walks you through the Vercel deployment process when using `@knowcode/doc-builder deploy`.">
7
+ <title>Vercel First-Time Setup Guide | Doc Builder</title>
8
8
 
9
9
  <meta name="author" content="Lindsay Smith">
10
10
  <meta name="keywords" content="documentation, markdown, static site generator, vercel, notion-style, your, deployment">
@@ -14,8 +14,8 @@
14
14
  <!-- Open Graph / Facebook -->
15
15
  <meta property="og:type" content="article">
16
16
  <meta property="og:url" content="https://doc-builder-delta.vercel.app/vercel-first-time-setup-guide.html">
17
- <meta property="og:title" content="Vercel First-Time Setup Guide - Simplified Process">
18
- <meta property="og:description" content="This guide walks you through the streamlined Vercel deployment process when using `@knowcode/doc-builder deploy`. The new Vercel CLI experience has fewer...">
17
+ <meta property="og:title" content="Vercel First-Time Setup Guide | Doc Builder">
18
+ <meta property="og:description" content="This guide walks you through the Vercel deployment process when using `@knowcode/doc-builder deploy`.">
19
19
  <meta property="og:image" content="https://doc-builder-delta.vercel.app/og-default.png">
20
20
  <meta property="og:site_name" content="Doc Builder">
21
21
  <meta property="og:locale" content="en_US">
@@ -24,8 +24,8 @@
24
24
  <meta name="twitter:card" content="summary_large_image">
25
25
  <meta name="twitter:site" content="@planbbackups">
26
26
  <meta name="twitter:creator" content="@planbbackups">
27
- <meta name="twitter:title" content="Vercel First-Time Setup Guide - Simplified Process">
28
- <meta name="twitter:description" content="This guide walks you through the streamlined Vercel deployment process when using `@knowcode/doc-builder deploy`. The new Vercel CLI experience has fewer...">
27
+ <meta name="twitter:title" content="Vercel First-Time Setup Guide | Doc Builder">
28
+ <meta name="twitter:description" content="This guide walks you through the Vercel deployment process when using `@knowcode/doc-builder deploy`.">
29
29
  <meta name="twitter:image" content="https://doc-builder-delta.vercel.app/og-default.png">
30
30
 
31
31
  <!-- Custom Meta Tags -->
@@ -51,8 +51,8 @@
51
51
  {
52
52
  "@context": "https://schema.org",
53
53
  "@type": "TechArticle",
54
- "headline": "Vercel First-Time Setup Guide - Simplified Process",
55
- "description": "This guide walks you through the streamlined Vercel deployment process when using `@knowcode/doc-builder deploy`. The new Vercel CLI experience has fewer...",
54
+ "headline": "Vercel First-Time Setup Guide",
55
+ "description": "This guide walks you through the Vercel deployment process when using `@knowcode/doc-builder deploy`.",
56
56
  "author": {
57
57
  "@type": "Person",
58
58
  "name": "Lindsay Smith"
@@ -62,8 +62,8 @@
62
62
  "name": "Knowcode Ltd",
63
63
  "url": "https://knowcode.tech"
64
64
  },
65
- "datePublished": "2025-07-22T18:55:04.192Z",
66
- "dateModified": "2025-07-22T18:55:04.192Z",
65
+ "datePublished": "2025-07-22T19:23:11.977Z",
66
+ "dateModified": "2025-07-22T19:23:11.977Z",
67
67
  "mainEntityOfPage": {
68
68
  "@type": "WebPage",
69
69
  "@id": "https://doc-builder-delta.vercel.app/vercel-first-time-setup-guide.html"
@@ -96,7 +96,7 @@
96
96
 
97
97
  <div class="header-actions">
98
98
  <div class="deployment-info">
99
- <span class="deployment-date" title="Built with doc-builder v1.5.21">Last updated: Jul 22, 2025, 06:55 PM UTC</span>
99
+ <span class="deployment-date" title="Built with doc-builder v1.5.22">Last updated: Jul 22, 2025, 07:23 PM UTC</span>
100
100
  </div>
101
101
 
102
102
 
@@ -148,7 +148,7 @@
148
148
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
149
149
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
150
150
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing the Vercel CLI across different operating systems."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
151
- <a href="/vercel-first-time-setup-guide.html" class="nav-item active" data-tooltip="This guide walks you through the streamlined Vercel deployment process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
151
+ <a href="/vercel-first-time-setup-guide.html" class="nav-item active" data-tooltip="This guide walks you through the Vercel deployment process when using ."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
152
152
  <div class="nav-section" data-level="1">
153
153
  <a class="nav-title collapsible" href="#" data-target="nav-guides-1" >
154
154
  <i class="fas fa-chevron-right collapse-icon"></i><i class="fas fa-folder"></i> Guides
@@ -179,10 +179,10 @@
179
179
  <!-- Content Area -->
180
180
  <main class="content">
181
181
  <div class="content-inner">
182
- <h1>Vercel First-Time Setup Guide - Simplified Process</h1>
182
+ <h1>Vercel First-Time Setup Guide</h1>
183
183
  <h2>Overview</h2>
184
- <p>This guide walks you through the streamlined Vercel deployment process when using <code>@knowcode/doc-builder deploy</code>. The new Vercel CLI experience has fewer prompts and clearer instructions, making deployment much simpler than before.</p>
185
- <h2>The Simplified Process</h2>
184
+ <p>This guide walks you through the Vercel deployment process when using <code>@knowcode/doc-builder deploy</code>.</p>
185
+ <h2>The Deployment Process</h2>
186
186
  <h3>Step 1: Run the Deploy Command</h3>
187
187
  <pre><code class="language-bash">npx @knowcode/doc-builder@latest deploy
188
188
  </code></pre>
@@ -204,7 +204,7 @@
204
204
  <li>Or enter your custom domain if you have one</li>
205
205
  </ul>
206
206
  <h3>Step 3: Vercel CLI Takes Over</h3>
207
- <p>The new Vercel CLI experience is much simpler with clearer prompts:</p>
207
+ <p>The Vercel CLI will guide you through the following prompts:</p>
208
208
  <h4>Deploy Confirmation</h4>
209
209
  <pre><code>Vercel CLI 28.0.0
210
210
  ? Set up and deploy &quot;~/path/to/your/project/html&quot;? [Y/n]
@@ -246,22 +246,6 @@
246
246
  </ol>
247
247
  <pre><code><i class="ph ph-check" aria-label="check"></i> Production: https://my-docs.vercel.app [copied to clipboard]
248
248
  </code></pre>
249
- <h2>What Changed from the Old Process?</h2>
250
- <p>The new Vercel CLI is much simpler:</p>
251
- <h3>Removed Prompts</h3>
252
- <ul>
253
- <li><i class="ph ph-x-circle" aria-label="error"></i> No more &quot;Found project xyz/html. Link to it?&quot; confusion</li>
254
- <li><i class="ph ph-x-circle" aria-label="error"></i> No more &quot;Link to different existing project?&quot; complexity</li>
255
- <li><i class="ph ph-x-circle" aria-label="error"></i> No more manual framework selection (auto-detected)</li>
256
- <li><i class="ph ph-x-circle" aria-label="error"></i> No more &quot;Make deployment publicly accessible?&quot; (configured later)</li>
257
- </ul>
258
- <h3>Improved Experience</h3>
259
- <ul>
260
- <li><i class="ph ph-check-circle" aria-label="checked"></i> Clearer prompts with better wording</li>
261
- <li><i class="ph ph-check-circle" aria-label="checked"></i> Automatic framework detection</li>
262
- <li><i class="ph ph-check-circle" aria-label="checked"></i> Fewer steps overall</li>
263
- <li><i class="ph ph-check-circle" aria-label="checked"></i> Less chance for configuration errors</li>
264
- </ul>
265
249
  <h2>Post-Deployment Configuration</h2>
266
250
  <h3>Making Your Docs Public</h3>
267
251
  <p>By default, Vercel may protect your deployment. To make docs publicly accessible:</p>
@@ -272,12 +256,43 @@
272
256
  <li>Set <strong>Vercel Authentication</strong> to <strong>Disabled</strong></li>
273
257
  <li>Click <strong>Save</strong></li>
274
258
  </ol>
259
+ <h3>SEO Optimization</h3>
260
+ <p>Once deployed, optimize your documentation for search engines:</p>
261
+ <ol>
262
+ <li><p><strong>Check SEO Status</strong>:</p>
263
+ <pre><code class="language-bash">npx @knowcode/doc-builder@latest seo-check
264
+ </code></pre>
265
+ </li>
266
+ <li><p><strong>Configure SEO Settings</strong>:</p>
267
+ <pre><code class="language-bash">npx @knowcode/doc-builder@latest setup-seo
268
+ </code></pre>
269
+ </li>
270
+ <li><p><strong>Review the SEO Guide</strong>: See our comprehensive <a href="./guides/seo-optimization-guide.md">SEO Optimization Guide</a> for best practices</p>
271
+ </li>
272
+ </ol>
273
+ <h3>Google Search Console Setup</h3>
274
+ <p>Make your documentation discoverable on Google:</p>
275
+ <ol>
276
+ <li><p><strong>Add Verification</strong>:</p>
277
+ <pre><code class="language-bash">npx @knowcode/doc-builder@latest google-verify YOUR_VERIFICATION_CODE
278
+ </code></pre>
279
+ </li>
280
+ <li><p><strong>Submit Sitemap</strong>: </p>
281
+ <ul>
282
+ <li>Your sitemap is automatically generated at <code>/sitemap.xml</code></li>
283
+ <li>Submit it in Google Search Console</li>
284
+ </ul>
285
+ </li>
286
+ <li><p><strong>Full Instructions</strong>: See the <a href="./guides/google-site-verification-guide.md">Google Site Verification Guide</a></p>
287
+ </li>
288
+ </ol>
275
289
  <h3>Custom Domain (Optional)</h3>
276
290
  <p>To add a custom domain:</p>
277
291
  <ol>
278
292
  <li>Go to <strong>Settings → Domains</strong></li>
279
293
  <li>Add your domain</li>
280
294
  <li>Follow DNS configuration instructions</li>
295
+ <li>Update your sitemap URL in Google Search Console</li>
281
296
  </ol>
282
297
  <h3>Environment Variables (If Using Authentication)</h3>
283
298
  <p>If you enabled authentication in doc-builder:</p>
@@ -338,7 +353,7 @@
338
353
  <li><strong>doc-builder Issues</strong>: File on GitHub or npm</li>
339
354
  </ul>
340
355
  <hr>
341
- <p>This guide reflects the new, simplified Vercel deployment process. For additional Vercel CLI configuration options, see the <a href="./vercel-cli-setup-guide.md">Vercel CLI Setup Guide</a>.</p>
356
+ <p>For additional Vercel CLI configuration options, see the <a href="./vercel-cli-setup-guide.md">Vercel CLI Setup Guide</a>.</p>
342
357
 
343
358
  </div>
344
359
  </main>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowcode/doc-builder",
3
- "version": "1.5.22",
3
+ "version": "1.5.23",
4
4
  "description": "Reusable documentation builder for markdown-based sites with Vercel deployment support",
5
5
  "main": "index.js",
6
6
  "bin": {