modality-kit 0.17.4 → 0.17.6

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -15624,14 +15624,10 @@ function recursiveScanForFiles(baseDir, options) {
15624
15624
  scanDirectory(fullPath, relPath, false);
15625
15625
  }
15626
15626
  } else if ((!fileExtensions || extensionSet.has(extname(entry))) && fileNameFilter(entry)) {
15627
- if (statSync(fullPath, { throwIfNoEntry: false })?.isFile()) {
15628
- files.push({ filename: relPath, fullPath });
15629
- }
15627
+ files.push({ filename: relPath, fullPath });
15630
15628
  }
15631
15629
  }
15632
- } catch (e) {
15633
- console.error(e);
15634
- }
15630
+ } catch (e) {}
15635
15631
  }
15636
15632
  scanDirectory(baseDir, "", true);
15637
15633
  return files.sort((a, b) => a.filename.localeCompare(b.filename));
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.17.4",
2
+ "version": "0.17.6",
3
3
  "name": "modality-kit",
4
4
  "repository": {
5
5
  "type": "git",