mirror of
https://github.com/renovatebot/renovate.git
synced 2025-03-12 15:26:58 +00:00
12 lines
351 B
TypeScript
12 lines
351 B
TypeScript
import is from '@sindresorhus/is';
|
|
import { AbstractMigration } from '../base/abstract-migration';
|
|
|
|
export class PlatformCommitMigration extends AbstractMigration {
|
|
override readonly propertyName = 'platformCommit';
|
|
|
|
override run(value: unknown): void {
|
|
if (is.boolean(value)) {
|
|
this.rewrite(value ? 'enabled' : 'disabled');
|
|
}
|
|
}
|
|
}
|