Add back in skip case

Signed-off-by: Zack Griesinger <zack.griesinger@c2fo.com>
This commit is contained in:
Zack Griesinger
2021-12-27 16:04:32 -06:00
parent bafc399585
commit bec82b0b2f
+5 -1
View File
@@ -100,11 +100,15 @@ export default async (cmd: Command) => {
}
});
// Only check @backstage packages and friends, we don't want this to do a full update of all deps
const filter = (name: string) => minimatch(name, prefix);
// Check for updates of transitive backstage dependencies
await workerThreads(16, lockfile.keys(), async name => {
// Only check @backstage packages and friends, we don't want this to do a full update of all deps
if (!filter(name)) {
return;
}
let target: string;
try {
target = await findTargetVersion(name);