@xylabs/ts-scripts-yarn3 7.1.6 → 7.1.7
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/index.mjs +1 -1
- package/dist/actions/index.mjs.map +1 -1
- package/dist/actions/package/index.mjs +1 -1
- package/dist/actions/package/index.mjs.map +1 -1
- package/dist/actions/package/lint.mjs +1 -1
- package/dist/actions/package/lint.mjs.map +1 -1
- package/dist/bin/package/fix.mjs +1 -1
- package/dist/bin/package/fix.mjs.map +1 -1
- package/dist/bin/package/lint-verbose.mjs +1 -1
- package/dist/bin/package/lint-verbose.mjs.map +1 -1
- package/dist/bin/package/lint.mjs +1 -1
- package/dist/bin/package/lint.mjs.map +1 -1
- package/dist/bin/package/relint.mjs +1 -1
- package/dist/bin/package/relint.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/actions/index.mjs
CHANGED
|
@@ -1912,7 +1912,7 @@ async function getRootESLintConfig() {
|
|
|
1912
1912
|
}
|
|
1913
1913
|
function getFiles(dir, ignoreFolders) {
|
|
1914
1914
|
const currentDirectory = cwd4();
|
|
1915
|
-
const subDirectory = dir.split(currentDirectory)[1];
|
|
1915
|
+
const subDirectory = dir.split(currentDirectory)[1]?.split("/")[1];
|
|
1916
1916
|
if (ignoreFolders.includes(subDirectory)) return [];
|
|
1917
1917
|
return readdirSync(dir, { withFileTypes: true }).flatMap((dirent) => {
|
|
1918
1918
|
const res = path10.resolve(dir, dirent.name);
|