Splits the dev-infra configurations into individual files inside the `.ng-dev/` folder. This helps with clarity as there is no single configuration file that becomes extremely large and difficult to maintain. Additionally, more explicit configuration types are now used. This fixed the max-line length setting for commit message validation. This option is currently named incorrectly and a noop. PR Close #37890
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
import {commitMessage} from './commit-message';
|
|
import {format} from './format';
|
|
import {github} from './github';
|
|
import {merge} from './merge';
|
|
|
|
module.exports = {
|
|
commitMessage,
|
|
format,
|
|
github,
|
|
merge,
|
|
};
|