@elliemae/ds-codemods 3.26.0-next.7 → 3.26.0-next.8
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.
|
@@ -186,7 +186,7 @@ export const filePathsWithGitIgnore = (options) => {
|
|
|
186
186
|
// Based on my testing, filtering at the end results in way better performance than filtering as we go...
|
|
187
187
|
// console.log('--------------- ----------------- filtering at the end:');
|
|
188
188
|
const nonGitIgnoredFiles = fullFilesPaths(startingDirPath, debug).filter(
|
|
189
|
-
(file) => !micromatch.isMatch(file, gitPatterns
|
|
189
|
+
(file) => !micromatch.isMatch(file, gitPatterns),
|
|
190
190
|
);
|
|
191
191
|
// we only want files matching the file extensions
|
|
192
192
|
const files = nonGitIgnoredFiles.filter((filePath) => {
|