patch-pulse
Version:
Check for outdated npm dependencies
19 lines • 430 B
JavaScript
/**
* The package managers that PatchPulse supports.
* Used for running the command to update the dependencies.
*/
export const PACKAGE_MANAGERS = [
'npm',
'pnpm',
'yarn',
'bun',
];
/**
* The filenames of the configuration files that PatchPulse looks for.
*/
export const CONFIG_FILENAMES = [
'patchpulse.config.json',
'.patchpulserc.json',
'.patchpulserc',
];
//# sourceMappingURL=constant.js.map