agent-mp 0.5.43 → 0.5.44
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/dist/core/engine.js +1 -1
- package/package.json +1 -1
package/dist/core/engine.js
CHANGED
|
@@ -254,7 +254,7 @@ async function walkForKeyFiles(root) {
|
|
|
254
254
|
// Directories that conventionally hold data/domain classes (language-agnostic)
|
|
255
255
|
const DOMAIN_DIR_REGEX = /[\/\\](domain|entity|entities|model|models|dto|dtos|schema|schemas)[\/\\]/i;
|
|
256
256
|
async function walk(dir, depth) {
|
|
257
|
-
if (depth >
|
|
257
|
+
if (depth > 12)
|
|
258
258
|
return;
|
|
259
259
|
let entries;
|
|
260
260
|
try {
|