mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
14 lines
440 B
TypeScript
14 lines
440 B
TypeScript
import { AbstractMigration } from '../base/abstract-migration';
|
|
|
|
export class TrustLevelMigration extends AbstractMigration {
|
|
override readonly deprecated = true;
|
|
override readonly propertyName = 'trustLevel';
|
|
|
|
override run(value: unknown): void {
|
|
if (value === 'high') {
|
|
this.setSafely('allowCustomCrateRegistries', true);
|
|
this.setSafely('allowScripts', true);
|
|
this.setSafely('exposeAllEnv', true);
|
|
}
|
|
}
|
|
}
|