@xylabs/ts-scripts-yarn3 6.4.4 → 6.4.5

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/xy/xy.mjs CHANGED
@@ -730,7 +730,7 @@ function findFilesByGlob(cwd, pattern) {
730
730
  return globSync(pattern, { cwd, absolute: true });
731
731
  }
732
732
  function findFiles(path4) {
733
- const allSourceInclude = ["./src/**/*.{ts,tsx}"];
733
+ const allSourceInclude = ["./src/**/*.{ts,tsx}", "./dist/**/*.d.ts"];
734
734
  const prodExcludeEndswith = [".spec.ts", ".stories.tsx"];
735
735
  const prodExcludeIncludes = ["/spec/", "/stories/", "/scripts/"];
736
736
  const allSourceFiles = allSourceInclude.flatMap((pattern) => findFilesByGlob(path4, pattern));