modality-kit 0.17.3 → 0.17.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/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15624,13 +15624,13 @@ function recursiveScanForFiles(baseDir, options) {
|
|
|
15624
15624
|
scanDirectory(fullPath, relPath, false);
|
|
15625
15625
|
}
|
|
15626
15626
|
} else if ((!fileExtensions || extensionSet.has(extname(entry))) && fileNameFilter(entry)) {
|
|
15627
|
-
|
|
15628
|
-
files.push({ filename: relPath, fullPath });
|
|
15629
|
-
}
|
|
15627
|
+
files.push({ filename: relPath, fullPath });
|
|
15630
15628
|
}
|
|
15631
15629
|
}
|
|
15632
15630
|
} catch (e) {
|
|
15633
|
-
|
|
15631
|
+
if (true) {
|
|
15632
|
+
console.error(e);
|
|
15633
|
+
}
|
|
15634
15634
|
}
|
|
15635
15635
|
}
|
|
15636
15636
|
scanDirectory(baseDir, "", true);
|
package/package.json
CHANGED