0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-05-23 03:50:06 +00:00
renovatebot_renovate/lib/config/presets/internal/npm.ts

14 lines
415 B
TypeScript
Raw Permalink Normal View History

2021-03-02 21:44:55 +01:00
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',
},
},
};