renovate/lib/config/migrations/custom/composer-ignore-platform-re...

13 lines
362 B
TypeScript

import is from '@sindresorhus/is';
import { AbstractMigration } from '../base/abstract-migration';
export class ComposerIgnorePlatformReqsMigration extends AbstractMigration {
override readonly propertyName = 'composerIgnorePlatformReqs';
override run(value: unknown): void {
if (is.boolean(value)) {
this.rewrite(value ? [] : null);
}
}
}