mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
14 lines
405 B
TypeScript
14 lines
405 B
TypeScript
import is from '@sindresorhus/is';
|
|
import { AbstractMigration } from '../base/abstract-migration';
|
|
|
|
export class CompatibilityMigration extends AbstractMigration {
|
|
override readonly deprecated = true;
|
|
override readonly propertyName = 'compatibility';
|
|
|
|
override run(value: unknown): void {
|
|
if (is.object(value)) {
|
|
this.setSafely('constraints', value as Record<string, string>);
|
|
}
|
|
}
|
|
}
|