@xylabs/ts-scripts-yarn3 7.0.0-rc.21 → 7.0.0-rc.22

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.
@@ -1393,7 +1393,7 @@ var buildEntries = (srcDir, entryMode = "single", options, excludeSpecAndStories
1393
1393
  break;
1394
1394
  }
1395
1395
  case "all": {
1396
- entries = excludeSpecAndStories ? getAllInputs(srcDir).filter((entry) => !entry.includes(".spec.") && !entry.includes(".stories.")) : getAllInputs(srcDir);
1396
+ entries = (excludeSpecAndStories ? getAllInputs(srcDir).filter((entry) => !entry.includes(".spec.") && !entry.includes(".stories.")) : getAllInputs(srcDir)).filter((entry) => !entry.endsWith(".d.ts"));
1397
1397
  break;
1398
1398
  }
1399
1399
  case "custom": {