mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
11 lines
356 B
TypeScript
11 lines
356 B
TypeScript
import type { PackageDependency } from '../../../types';
|
|
import type { NpmManagerData } from '../../types';
|
|
|
|
export function setNodeCommitTopic(
|
|
dep: PackageDependency<NpmManagerData>,
|
|
): void {
|
|
// This is a special case for Node.js to group it together with other managers
|
|
if (dep.depName === 'node') {
|
|
dep.commitMessageTopic = 'Node.js';
|
|
}
|
|
}
|