mirror of
https://github.com/renovatebot/renovate.git
synced 2025-03-12 15:26:58 +00:00
13 lines
415 B
TypeScript
13 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',
|
|
},
|
|
},
|
|
};
|