UNPKG

updates

Version:

Flexible dependency update tool

16 lines 411 B
#!/usr/bin/env node //#region index.d.ts type Config = { /** Array of packages to include */ include?: Array<string | RegExp>; /** Array of packages to exclude */ exclude?: Array<string | RegExp>; /** Array of package types to use */ types?: Array<string>; /** URL to npm registry */ registry?: string; /** Minimum package age in days */ cooldown?: number; }; //#endregion export { Config };