cli: exclude vore packages from package dependency diff
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Exclude core packages from package dependency diff.
|
||||
@@ -172,6 +172,11 @@ class PackageJsonHandler {
|
||||
if (this.variant === 'app' && key.startsWith('plugin-')) {
|
||||
continue;
|
||||
}
|
||||
// Skip checking of the core packages, since we're migrating over
|
||||
if (key.startsWith('@backstage/core')) {
|
||||
continue;
|
||||
}
|
||||
|
||||
await this.syncField(key, pkgDeps, targetDeps, fieldName);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user