mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 11:03:53 +08:00
Update ng-dev setup to work with 18.19 For more details, refer to: https://github.com/TypeStrong/ts-node/issues/2094
15 lines
448 B
JavaScript
15 lines
448 B
JavaScript
import { getReleasablePackages } from '../lib/packages.mjs';
|
|
|
|
/**
|
|
* The configuration for `ng-dev commit-message` commands.
|
|
*
|
|
* @type { import("@angular/ng-dev").CommitMessageConfig }
|
|
*/
|
|
export const commitMessage = {
|
|
maxLineLength: Infinity,
|
|
minBodyLength: 0,
|
|
minBodyLengthTypeExcludes: ['docs'],
|
|
// Note: When changing this logic, also change the `contributing.ejs` file.
|
|
scopes: getReleasablePackages().map(({ name }) => name),
|
|
};
|