mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-24 08:06:17 +08:00
The dev-infra build tooling is now decoupled from `ng-dev`. This will make it easier to update `ng-dev` without necessarily needing to upgrade the whole build system, Bazel etc. This is useful when e.g. new release tool features have been added and should also be ported to active LTS branches.
14 lines
432 B
TypeScript
14 lines
432 B
TypeScript
import { CommitMessageConfig } from '@angular/ng-dev';
|
|
import packages from '../lib/packages.js';
|
|
|
|
/**
|
|
* The configuration for `ng-dev commit-message` commands.
|
|
*/
|
|
export const commitMessage: CommitMessageConfig = {
|
|
maxLineLength: Infinity,
|
|
minBodyLength: 0,
|
|
minBodyLengthTypeExcludes: ['docs'],
|
|
// Note: When changing this logic, also change the `contributing.ejs` file.
|
|
scopes: [...Object.keys(packages.packages)],
|
|
};
|