mirror of https://github.com/renovatebot/renovate
14 lines
415 B
TypeScript
14 lines
415 B
TypeScript
import type { Preset } from '../types';
|
|
|
|
/* eslint sort-keys: ["error", "asc", {caseSensitive: false, natural: true}] */
|
|
|
|
export const presets: Record<string, Preset> = {
|
|
unpublishSafe: {
|
|
description:
|
|
'Wait until the npm package is three days old before raising the update, this prevents npm unpublishing a package you already upgraded to.',
|
|
npm: {
|
|
minimumReleaseAge: '3 days',
|
|
},
|
|
},
|
|
};
|