@knowcode/doc-builder 1.10.11 → 1.10.12

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.
@@ -1219,7 +1219,7 @@ async function scanAllFiles(dir, baseDir = dir, options = {}) {
1219
1219
  continue;
1220
1220
  }
1221
1221
 
1222
- if (stat.isDirectory() && !item.startsWith('.') && !item.startsWith('_')) {
1222
+ if (stat.isDirectory() && !item.startsWith('.') && !(item.startsWith('_') && item !== '_images')) {
1223
1223
  const subResult = await scanAllFiles(fullPath, baseDir, options);
1224
1224
  markdownFiles.push(...subResult.markdownFiles);
1225
1225
  attachmentFiles.push(...subResult.attachmentFiles);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowcode/doc-builder",
3
- "version": "1.10.11",
3
+ "version": "1.10.12",
4
4
  "description": "Reusable documentation builder for markdown-based sites with Vercel deployment support",
5
5
  "main": "index.js",
6
6
  "bin": {