ht-skills 0.2.14 → 0.2.15
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/lib/cli.js +2 -2
- package/package.json +1 -1
package/lib/cli.js
CHANGED
|
@@ -421,12 +421,12 @@ function formatInstallError(error, { slug, version = null, registry, stage = "re
|
|
|
421
421
|
|
|
422
422
|
async function walkFiles(baseDir) {
|
|
423
423
|
const results = [];
|
|
424
|
-
const ignored = new Set([".git", "node_modules", ".
|
|
424
|
+
const ignored = new Set([".git", "node_modules", ".ds_store"]);
|
|
425
425
|
|
|
426
426
|
async function walk(currentDir) {
|
|
427
427
|
const entries = await fs.readdir(currentDir, { withFileTypes: true });
|
|
428
428
|
for (const entry of entries) {
|
|
429
|
-
if (ignored.has(entry.name)) {
|
|
429
|
+
if (ignored.has(String(entry.name || "").toLowerCase())) {
|
|
430
430
|
continue;
|
|
431
431
|
}
|
|
432
432
|
|