fix(core): fix check deps .gitignore shortcut in rm schematic

This commit is contained in:
Jo Hanna Pearce 2020-06-19 15:20:01 +01:00 committed by Jo Hanna Pearce
parent 06a7080132
commit 24abc1f98a

View File

@ -38,7 +38,7 @@ export function checkDependencies(schema: Schema): Rule {
for (const dir of tree.getDir('/').subdirs) {
if (ig.ignores(dir)) {
return;
continue;
}
tree.getDir(dir).visit((file: string) => {