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.
Files changed (2) hide show
  1. package/lib/cli.js +2 -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", ".DS_Store"]);
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ht-skills",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "CLI for installing and submitting skills from HT Skills Marketplace.",
5
5
  "type": "commonjs",
6
6
  "bin": {