@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/actions/deplint.mjs +1 -1
- package/dist/actions/deplint.mjs.map +1 -1
- package/dist/actions/index.mjs +1 -1
- package/dist/actions/index.mjs.map +1 -1
- package/dist/bin/xy.mjs +1 -1
- package/dist/bin/xy.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/xy/index.mjs +1 -1
- package/dist/xy/index.mjs.map +1 -1
- package/dist/xy/xy.mjs +1 -1
- package/dist/xy/xy.mjs.map +1 -1
- package/dist/xy/xyLintCommands.mjs +1 -1
- package/dist/xy/xyLintCommands.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -822,7 +822,7 @@ function findFilesByGlob(cwd4, pattern) {
|
|
|
822
822
|
return globSync(pattern, { cwd: cwd4, absolute: true });
|
|
823
823
|
}
|
|
824
824
|
function findFiles(path9) {
|
|
825
|
-
const allSourceInclude = ["./src/**/*.{ts,tsx}"];
|
|
825
|
+
const allSourceInclude = ["./src/**/*.{ts,tsx}", "./dist/**/*.d.ts"];
|
|
826
826
|
const prodExcludeEndswith = [".spec.ts", ".stories.tsx"];
|
|
827
827
|
const prodExcludeIncludes = ["/spec/", "/stories/", "/scripts/"];
|
|
828
828
|
const allSourceFiles = allSourceInclude.flatMap((pattern) => findFilesByGlob(path9, pattern));
|