Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 2x 107x 2x 2x 2x 105x 105x 481x 481x 103x 378x 7x 105x | import { joinPathFragments, logger } from '@nx/devkit';
import type { FsTree } from 'nx/src/generators/tree';
import { directoryExists } from 'nx/src/utils/fileutils';
/**
* Recursively find all scss files in a directory and its subdirectories.
* @param tree file system tree
* @param src source directory
* @param filter file extension filter, defaults to .scss
* @param result execution result, required for recursion, defaults to { stderr: '', stdout: '' }
* @returns execution result
*/
export const findScssFiles = (
tree: FsTree,
src: string,
filter = '.scss',
result = { stderr: '', stdout: '' },
): { stderr: string; stdout: string } => {
if (!directoryExists(src)) {
logger.error(`Source directory ${src} does not exist`);
result.stderr = `Source directory ${src} does not exist`;
return result;
}
const files = tree.children(src);
for (let i = 0, max = files.length; i < max; i += 1) {
const filePath = joinPathFragments(src, files[i]);
if (!tree.isFile(filePath)) {
findScssFiles(tree, filePath, filter, result);
} else if (filePath.endsWith(filter)) {
result.stdout += result.stdout.length === 0 ? filePath : ` ${filePath}`;
}
}
return result;
};
|