@knowcode/doc-builder 1.8.4 → 1.8.5
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/.claude/settings.local.json +2 -1
- package/CHANGELOG.md +14 -0
- package/README.md +27 -0
- package/html/README.html +3 -3
- package/html/documentation-index.html +3 -3
- package/html/guides/authentication-default-change.html +3 -3
- package/html/guides/authentication-guide.html +3 -3
- package/html/guides/claude-workflow-guide.html +3 -3
- package/html/guides/documentation-standards.html +3 -3
- package/html/guides/phosphor-icons-guide.html +3 -3
- package/html/guides/private-directory-authentication.html +3 -3
- package/html/guides/public-site-deployment.html +3 -3
- package/html/guides/search-engine-verification-guide.html +3 -3
- package/html/guides/seo-guide.html +3 -3
- package/html/guides/seo-optimization-guide.html +3 -3
- package/html/guides/troubleshooting-guide.html +3 -3
- package/html/guides/windows-setup-guide.html +3 -3
- package/html/index.html +3 -3
- package/html/private/cache-control-anti-pattern.html +3 -3
- package/html/private/launch/README.html +3 -3
- package/html/private/launch/auth-cleanup-summary.html +3 -3
- package/html/private/launch/bubble-plugin-specification.html +3 -3
- package/html/private/launch/go-to-market-strategy.html +3 -3
- package/html/private/launch/launch-announcements.html +3 -3
- package/html/private/launch/vercel-deployment-auth-setup.html +3 -3
- package/html/private/next-steps-walkthrough.html +3 -3
- package/html/private/supabase-auth-implementation-completed.html +3 -3
- package/html/private/supabase-auth-implementation-plan.html +3 -3
- package/html/private/supabase-auth-integration-plan.html +3 -3
- package/html/private/supabase-auth-setup-guide.html +3 -3
- package/html/private/test-private-doc.html +3 -3
- package/html/private/user-management-tooling.html +3 -3
- package/html/sitemap.xml +44 -44
- package/html/vercel-cli-setup-guide.html +3 -3
- package/html/vercel-first-time-setup-guide.html +3 -3
- package/lib/core-builder.js +2 -2
- package/package.json +1 -1
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
"Bash(DEBUG=1 ./user-management/add-users.sh add wru-bid-analysis.vercel.app lindsay@knowcode.tech)",
|
|
44
44
|
"Bash(./user-management/add-users.sh:*)",
|
|
45
45
|
"Bash(DEBUG=1 ./add-users.sh add wru-bid-analysis.vercel.app lindsay@knowcode.tech)",
|
|
46
|
-
"Bash(brew upgrade:*)"
|
|
46
|
+
"Bash(brew upgrade:*)",
|
|
47
|
+
"Bash(psql:*)"
|
|
47
48
|
],
|
|
48
49
|
"deny": []
|
|
49
50
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to @knowcode/doc-builder will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.8.5] - 2025-07-26
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Files and folders starting with underscore (`_`) are now excluded from navigation
|
|
12
|
+
- Useful for draft documents, internal notes, and work-in-progress content
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Updated `getAllMarkdownFiles` to skip underscore-prefixed files and folders
|
|
16
|
+
- Enhanced documentation to explain file naming conventions
|
|
17
|
+
|
|
18
|
+
### Developer Experience
|
|
19
|
+
- Keep drafts and internal docs in your docs folder without publishing them
|
|
20
|
+
- Example: `_draft.md`, `_internal/notes.md` won't appear in navigation
|
|
21
|
+
|
|
8
22
|
## [1.8.4] - 2025-07-26
|
|
9
23
|
|
|
10
24
|
### Added
|
package/README.md
CHANGED
|
@@ -388,6 +388,33 @@ my-project/
|
|
|
388
388
|
└── package.json
|
|
389
389
|
```
|
|
390
390
|
|
|
391
|
+
### File and Folder Naming Conventions
|
|
392
|
+
|
|
393
|
+
- **Hidden files**: Files and folders starting with `.` (dot) are ignored
|
|
394
|
+
- **Private files**: Files and folders starting with `_` (underscore) are excluded from navigation
|
|
395
|
+
- **Authentication**: Use a `private/` folder for content requiring authentication
|
|
396
|
+
|
|
397
|
+
#### Examples:
|
|
398
|
+
|
|
399
|
+
```
|
|
400
|
+
docs/
|
|
401
|
+
├── README.md # ✅ Included in navigation
|
|
402
|
+
├── guide.md # ✅ Included
|
|
403
|
+
├── _draft.md # ❌ Excluded (starts with underscore)
|
|
404
|
+
├── .hidden.md # ❌ Excluded (starts with dot)
|
|
405
|
+
├── _internal/ # ❌ Entire folder excluded
|
|
406
|
+
│ └── notes.md # ❌ Not visible in navigation
|
|
407
|
+
├── private/ # 🔐 Requires authentication
|
|
408
|
+
│ └── admin.md # 🔐 Only visible to authenticated users
|
|
409
|
+
└── public/ # ✅ Normal folder
|
|
410
|
+
└── faq.md # ✅ Included
|
|
411
|
+
```
|
|
412
|
+
|
|
413
|
+
This is useful for:
|
|
414
|
+
- Keeping draft documents in your docs folder without publishing them
|
|
415
|
+
- Storing internal notes or templates
|
|
416
|
+
- Maintaining work-in-progress files alongside published documentation
|
|
417
|
+
|
|
391
418
|
## Working with Claude Code
|
|
392
419
|
|
|
393
420
|
Many users leverage Claude Code to create and maintain their documentation. Claude Code is particularly effective at:
|
package/html/README.html
CHANGED
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.009Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.009Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/README.html"
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
<div class="header-actions">
|
|
134
134
|
<div class="deployment-info">
|
|
135
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
135
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
136
136
|
</div>
|
|
137
137
|
|
|
138
138
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.021Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.021Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
<div class="header-actions">
|
|
134
134
|
<div class="deployment-info">
|
|
135
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
135
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
136
136
|
</div>
|
|
137
137
|
|
|
138
138
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.026Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.026Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/authentication-default-change.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.029Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.029Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/authentication-guide.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.034Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.034Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.038Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.038Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/documentation-standards.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.042Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.042Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/phosphor-icons-guide.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.046Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.046Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/private-directory-authentication.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.048Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.048Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/public-site-deployment.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.050Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.050Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/search-engine-verification-guide.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.053Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.053Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/seo-guide.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.061Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.061Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/seo-optimization-guide.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.065Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.065Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/troubleshooting-guide.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.070Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.070Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/guides/windows-setup-guide.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
package/html/index.html
CHANGED
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.009Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.009Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/README.html"
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
<div class="header-actions">
|
|
134
134
|
<div class="deployment-info">
|
|
135
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
135
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
136
136
|
</div>
|
|
137
137
|
|
|
138
138
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.073Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.073Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/cache-control-anti-pattern.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.075Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.075Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/launch/README.html"
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
|
|
145
145
|
<div class="header-actions">
|
|
146
146
|
<div class="deployment-info">
|
|
147
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
147
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
148
148
|
</div>
|
|
149
149
|
|
|
150
150
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.076Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.076Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/launch/auth-cleanup-summary.html"
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
|
|
145
145
|
<div class="header-actions">
|
|
146
146
|
<div class="deployment-info">
|
|
147
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
147
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
148
148
|
</div>
|
|
149
149
|
|
|
150
150
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.079Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.079Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/launch/bubble-plugin-specification.html"
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
|
|
145
145
|
<div class="header-actions">
|
|
146
146
|
<div class="deployment-info">
|
|
147
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
147
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
148
148
|
</div>
|
|
149
149
|
|
|
150
150
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.083Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.083Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/launch/go-to-market-strategy.html"
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
|
|
145
145
|
<div class="header-actions">
|
|
146
146
|
<div class="deployment-info">
|
|
147
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
147
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
148
148
|
</div>
|
|
149
149
|
|
|
150
150
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.089Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.089Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/launch/launch-announcements.html"
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
|
|
145
145
|
<div class="header-actions">
|
|
146
146
|
<div class="deployment-info">
|
|
147
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
147
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
148
148
|
</div>
|
|
149
149
|
|
|
150
150
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.098Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.098Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/launch/vercel-deployment-auth-setup.html"
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
|
|
145
145
|
<div class="header-actions">
|
|
146
146
|
<div class="deployment-info">
|
|
147
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
147
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
148
148
|
</div>
|
|
149
149
|
|
|
150
150
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.104Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.104Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/next-steps-walkthrough.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.107Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.107Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/supabase-auth-implementation-completed.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.110Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.110Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/supabase-auth-implementation-plan.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.113Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.113Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/supabase-auth-integration-plan.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.116Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.116Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/supabase-auth-setup-guide.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.117Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.117Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/test-private-doc.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.120Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.120Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/private/user-management-tooling.html"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<div class="header-actions">
|
|
140
140
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
141
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
142
142
|
</div>
|
|
143
143
|
|
|
144
144
|
|
package/html/sitemap.xml
CHANGED
|
@@ -2,265 +2,265 @@
|
|
|
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-
|
|
5
|
+
<lastmod>2025-07-26T14:20:23.136Z</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-
|
|
11
|
+
<lastmod>2025-07-26T14:20:23.136Z</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-
|
|
17
|
+
<lastmod>2025-07-26T14:20:23.136Z</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-
|
|
23
|
+
<lastmod>2025-07-26T14:20:23.136Z</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-default-change.html</loc>
|
|
29
|
-
<lastmod>2025-07-
|
|
29
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/authentication-guide.html</loc>
|
|
35
|
-
<lastmod>2025-07-
|
|
35
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/cache-control-anti-pattern.html</loc>
|
|
41
|
-
<lastmod>2025-07-
|
|
41
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/claude-workflow-guide.html</loc>
|
|
47
|
-
<lastmod>2025-07-
|
|
47
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/document-standards.html</loc>
|
|
53
|
-
<lastmod>2025-07-
|
|
53
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/documentation-standards.html</loc>
|
|
59
|
-
<lastmod>2025-07-
|
|
59
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/next-steps-walkthrough.html</loc>
|
|
65
|
-
<lastmod>2025-07-
|
|
65
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/phosphor-icons-guide.html</loc>
|
|
71
|
-
<lastmod>2025-07-
|
|
71
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/private-directory-authentication.html</loc>
|
|
77
|
-
<lastmod>2025-07-
|
|
77
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/public-site-deployment.html</loc>
|
|
83
|
-
<lastmod>2025-07-
|
|
83
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/guides/search-engine-verification-guide.html</loc>
|
|
89
|
-
<lastmod>2025-07-
|
|
89
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
90
90
|
<changefreq>monthly</changefreq>
|
|
91
91
|
<priority>0.8</priority>
|
|
92
92
|
</url>
|
|
93
93
|
<url>
|
|
94
94
|
<loc>https://doc-builder-delta.vercel.app/guides/seo-guide.html</loc>
|
|
95
|
-
<lastmod>2025-07-
|
|
95
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
96
96
|
<changefreq>monthly</changefreq>
|
|
97
97
|
<priority>0.8</priority>
|
|
98
98
|
</url>
|
|
99
99
|
<url>
|
|
100
100
|
<loc>https://doc-builder-delta.vercel.app/guides/seo-optimization-guide.html</loc>
|
|
101
|
-
<lastmod>2025-07-
|
|
101
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
102
102
|
<changefreq>monthly</changefreq>
|
|
103
103
|
<priority>0.8</priority>
|
|
104
104
|
</url>
|
|
105
105
|
<url>
|
|
106
106
|
<loc>https://doc-builder-delta.vercel.app/guides/supabase-auth-implementation-plan.html</loc>
|
|
107
|
-
<lastmod>2025-07-
|
|
107
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
108
108
|
<changefreq>monthly</changefreq>
|
|
109
109
|
<priority>0.8</priority>
|
|
110
110
|
</url>
|
|
111
111
|
<url>
|
|
112
112
|
<loc>https://doc-builder-delta.vercel.app/guides/supabase-auth-integration-plan.html</loc>
|
|
113
|
-
<lastmod>2025-07-
|
|
113
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
114
114
|
<changefreq>monthly</changefreq>
|
|
115
115
|
<priority>0.8</priority>
|
|
116
116
|
</url>
|
|
117
117
|
<url>
|
|
118
118
|
<loc>https://doc-builder-delta.vercel.app/guides/supabase-auth-setup-guide.html</loc>
|
|
119
|
-
<lastmod>2025-07-
|
|
119
|
+
<lastmod>2025-07-26T14:20:23.136Z</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/guides/troubleshooting-guide.html</loc>
|
|
125
|
-
<lastmod>2025-07-
|
|
125
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
126
126
|
<changefreq>monthly</changefreq>
|
|
127
127
|
<priority>0.8</priority>
|
|
128
128
|
</url>
|
|
129
129
|
<url>
|
|
130
130
|
<loc>https://doc-builder-delta.vercel.app/guides/vercel-deployment-auth-setup.html</loc>
|
|
131
|
-
<lastmod>2025-07-
|
|
131
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
132
132
|
<changefreq>monthly</changefreq>
|
|
133
133
|
<priority>0.8</priority>
|
|
134
134
|
</url>
|
|
135
135
|
<url>
|
|
136
136
|
<loc>https://doc-builder-delta.vercel.app/guides/windows-setup-guide.html</loc>
|
|
137
|
-
<lastmod>2025-07-
|
|
137
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
138
138
|
<changefreq>monthly</changefreq>
|
|
139
139
|
<priority>0.8</priority>
|
|
140
140
|
</url>
|
|
141
141
|
<url>
|
|
142
142
|
<loc>https://doc-builder-delta.vercel.app/index.html</loc>
|
|
143
|
-
<lastmod>2025-07-
|
|
143
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
144
144
|
<changefreq>weekly</changefreq>
|
|
145
145
|
<priority>1.0</priority>
|
|
146
146
|
</url>
|
|
147
147
|
<url>
|
|
148
148
|
<loc>https://doc-builder-delta.vercel.app/launch/README.html</loc>
|
|
149
|
-
<lastmod>2025-07-
|
|
149
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
150
150
|
<changefreq>monthly</changefreq>
|
|
151
151
|
<priority>0.6</priority>
|
|
152
152
|
</url>
|
|
153
153
|
<url>
|
|
154
154
|
<loc>https://doc-builder-delta.vercel.app/launch/bubble-plugin-specification.html</loc>
|
|
155
|
-
<lastmod>2025-07-
|
|
155
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
156
156
|
<changefreq>monthly</changefreq>
|
|
157
157
|
<priority>0.6</priority>
|
|
158
158
|
</url>
|
|
159
159
|
<url>
|
|
160
160
|
<loc>https://doc-builder-delta.vercel.app/launch/go-to-market-strategy.html</loc>
|
|
161
|
-
<lastmod>2025-07-
|
|
161
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
162
162
|
<changefreq>monthly</changefreq>
|
|
163
163
|
<priority>0.6</priority>
|
|
164
164
|
</url>
|
|
165
165
|
<url>
|
|
166
166
|
<loc>https://doc-builder-delta.vercel.app/launch/launch-announcements.html</loc>
|
|
167
|
-
<lastmod>2025-07-
|
|
167
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
168
168
|
<changefreq>monthly</changefreq>
|
|
169
169
|
<priority>0.6</priority>
|
|
170
170
|
</url>
|
|
171
171
|
<url>
|
|
172
172
|
<loc>https://doc-builder-delta.vercel.app/private/cache-control-anti-pattern.html</loc>
|
|
173
|
-
<lastmod>2025-07-
|
|
173
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
174
174
|
<changefreq>monthly</changefreq>
|
|
175
175
|
<priority>0.6</priority>
|
|
176
176
|
</url>
|
|
177
177
|
<url>
|
|
178
178
|
<loc>https://doc-builder-delta.vercel.app/private/launch/README.html</loc>
|
|
179
|
-
<lastmod>2025-07-
|
|
179
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
180
180
|
<changefreq>monthly</changefreq>
|
|
181
181
|
<priority>0.6</priority>
|
|
182
182
|
</url>
|
|
183
183
|
<url>
|
|
184
184
|
<loc>https://doc-builder-delta.vercel.app/private/launch/auth-cleanup-summary.html</loc>
|
|
185
|
-
<lastmod>2025-07-
|
|
185
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
186
186
|
<changefreq>monthly</changefreq>
|
|
187
187
|
<priority>0.6</priority>
|
|
188
188
|
</url>
|
|
189
189
|
<url>
|
|
190
190
|
<loc>https://doc-builder-delta.vercel.app/private/launch/bubble-plugin-specification.html</loc>
|
|
191
|
-
<lastmod>2025-07-
|
|
191
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
192
192
|
<changefreq>monthly</changefreq>
|
|
193
193
|
<priority>0.6</priority>
|
|
194
194
|
</url>
|
|
195
195
|
<url>
|
|
196
196
|
<loc>https://doc-builder-delta.vercel.app/private/launch/go-to-market-strategy.html</loc>
|
|
197
|
-
<lastmod>2025-07-
|
|
197
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
198
198
|
<changefreq>monthly</changefreq>
|
|
199
199
|
<priority>0.6</priority>
|
|
200
200
|
</url>
|
|
201
201
|
<url>
|
|
202
202
|
<loc>https://doc-builder-delta.vercel.app/private/launch/launch-announcements.html</loc>
|
|
203
|
-
<lastmod>2025-07-
|
|
203
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
204
204
|
<changefreq>monthly</changefreq>
|
|
205
205
|
<priority>0.6</priority>
|
|
206
206
|
</url>
|
|
207
207
|
<url>
|
|
208
208
|
<loc>https://doc-builder-delta.vercel.app/private/launch/vercel-deployment-auth-setup.html</loc>
|
|
209
|
-
<lastmod>2025-07-
|
|
209
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
210
210
|
<changefreq>monthly</changefreq>
|
|
211
211
|
<priority>0.6</priority>
|
|
212
212
|
</url>
|
|
213
213
|
<url>
|
|
214
214
|
<loc>https://doc-builder-delta.vercel.app/private/next-steps-walkthrough.html</loc>
|
|
215
|
-
<lastmod>2025-07-
|
|
215
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
216
216
|
<changefreq>monthly</changefreq>
|
|
217
217
|
<priority>0.6</priority>
|
|
218
218
|
</url>
|
|
219
219
|
<url>
|
|
220
220
|
<loc>https://doc-builder-delta.vercel.app/private/supabase-auth-implementation-completed.html</loc>
|
|
221
|
-
<lastmod>2025-07-
|
|
221
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
222
222
|
<changefreq>monthly</changefreq>
|
|
223
223
|
<priority>0.6</priority>
|
|
224
224
|
</url>
|
|
225
225
|
<url>
|
|
226
226
|
<loc>https://doc-builder-delta.vercel.app/private/supabase-auth-implementation-plan.html</loc>
|
|
227
|
-
<lastmod>2025-07-
|
|
227
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
228
228
|
<changefreq>monthly</changefreq>
|
|
229
229
|
<priority>0.6</priority>
|
|
230
230
|
</url>
|
|
231
231
|
<url>
|
|
232
232
|
<loc>https://doc-builder-delta.vercel.app/private/supabase-auth-integration-plan.html</loc>
|
|
233
|
-
<lastmod>2025-07-
|
|
233
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
234
234
|
<changefreq>monthly</changefreq>
|
|
235
235
|
<priority>0.6</priority>
|
|
236
236
|
</url>
|
|
237
237
|
<url>
|
|
238
238
|
<loc>https://doc-builder-delta.vercel.app/private/supabase-auth-setup-guide.html</loc>
|
|
239
|
-
<lastmod>2025-07-
|
|
239
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
240
240
|
<changefreq>monthly</changefreq>
|
|
241
241
|
<priority>0.8</priority>
|
|
242
242
|
</url>
|
|
243
243
|
<url>
|
|
244
244
|
<loc>https://doc-builder-delta.vercel.app/private/test-private-doc.html</loc>
|
|
245
|
-
<lastmod>2025-07-
|
|
245
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
246
246
|
<changefreq>monthly</changefreq>
|
|
247
247
|
<priority>0.6</priority>
|
|
248
248
|
</url>
|
|
249
249
|
<url>
|
|
250
250
|
<loc>https://doc-builder-delta.vercel.app/private/user-management-tooling.html</loc>
|
|
251
|
-
<lastmod>2025-07-
|
|
251
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
252
252
|
<changefreq>monthly</changefreq>
|
|
253
253
|
<priority>0.6</priority>
|
|
254
254
|
</url>
|
|
255
255
|
<url>
|
|
256
256
|
<loc>https://doc-builder-delta.vercel.app/vercel-cli-setup-guide.html</loc>
|
|
257
|
-
<lastmod>2025-07-
|
|
257
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
258
258
|
<changefreq>monthly</changefreq>
|
|
259
259
|
<priority>0.8</priority>
|
|
260
260
|
</url>
|
|
261
261
|
<url>
|
|
262
262
|
<loc>https://doc-builder-delta.vercel.app/vercel-first-time-setup-guide.html</loc>
|
|
263
|
-
<lastmod>2025-07-
|
|
263
|
+
<lastmod>2025-07-26T14:20:23.136Z</lastmod>
|
|
264
264
|
<changefreq>monthly</changefreq>
|
|
265
265
|
<priority>0.8</priority>
|
|
266
266
|
</url>
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.122Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.122Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/vercel-cli-setup-guide.html"
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
<div class="header-actions">
|
|
134
134
|
<div class="deployment-info">
|
|
135
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
135
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
136
136
|
</div>
|
|
137
137
|
|
|
138
138
|
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"name": "Knowcode Ltd",
|
|
99
99
|
"url": "https://knowcode.tech"
|
|
100
100
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
101
|
+
"datePublished": "2025-07-26T14:20:23.124Z",
|
|
102
|
+
"dateModified": "2025-07-26T14:20:23.124Z",
|
|
103
103
|
"mainEntityOfPage": {
|
|
104
104
|
"@type": "WebPage",
|
|
105
105
|
"@id": "https://doc-builder-delta.vercel.app/vercel-first-time-setup-guide.html"
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
<div class="header-actions">
|
|
134
134
|
<div class="deployment-info">
|
|
135
|
-
<span class="deployment-date" title="Built with doc-builder v1.8.
|
|
135
|
+
<span class="deployment-date" title="Built with doc-builder v1.8.4">Last updated: Jul 26, 2025, 02:20 PM UTC</span>
|
|
136
136
|
</div>
|
|
137
137
|
|
|
138
138
|
|
package/lib/core-builder.js
CHANGED
|
@@ -750,10 +750,10 @@ async function getAllMarkdownFiles(dir, baseDir = dir) {
|
|
|
750
750
|
const fullPath = path.join(dir, item);
|
|
751
751
|
const stat = await fs.stat(fullPath);
|
|
752
752
|
|
|
753
|
-
if (stat.isDirectory() && !item.startsWith('.')) {
|
|
753
|
+
if (stat.isDirectory() && !item.startsWith('.') && !item.startsWith('_')) {
|
|
754
754
|
const subFiles = await getAllMarkdownFiles(fullPath, baseDir);
|
|
755
755
|
files.push(...subFiles);
|
|
756
|
-
} else if (item.endsWith('.md')) {
|
|
756
|
+
} else if (item.endsWith('.md') && !item.startsWith('_')) {
|
|
757
757
|
const relativePath = path.relative(baseDir, fullPath);
|
|
758
758
|
const urlPath = relativePath.replace(/\.md$/, '.html').replace(/\\/g, '/');
|
|
759
759
|
const displayName = path.basename(item, '.md')
|