@camstack/system 1.2.72 → 1.2.73
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 +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3330,6 +3330,7 @@ var AddonLoader = class {
|
|
|
3330
3330
|
};
|
|
3331
3331
|
/** Check if a Dirent is a directory (or a symlink pointing to a directory) */
|
|
3332
3332
|
function isDirectoryEntry(entry, parentDir) {
|
|
3333
|
+
if (entry.name.startsWith(".")) return false;
|
|
3333
3334
|
if (entry.isDirectory()) return true;
|
|
3334
3335
|
if (entry.isSymbolicLink()) try {
|
|
3335
3336
|
return node_fs.statSync(node_path.join(parentDir, entry.name)).isDirectory();
|
package/dist/index.mjs
CHANGED
|
@@ -3322,6 +3322,7 @@ var AddonLoader = class {
|
|
|
3322
3322
|
};
|
|
3323
3323
|
/** Check if a Dirent is a directory (or a symlink pointing to a directory) */
|
|
3324
3324
|
function isDirectoryEntry(entry, parentDir) {
|
|
3325
|
+
if (entry.name.startsWith(".")) return false;
|
|
3325
3326
|
if (entry.isDirectory()) return true;
|
|
3326
3327
|
if (entry.isSymbolicLink()) try {
|
|
3327
3328
|
return fs$17.statSync(path$39.join(parentDir, entry.name)).isDirectory();
|