/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.ng-dev/pull-request.mts
16 строк
690 B
Joey Perrott
Revert "build: use mjs files for ng-dev configuration (#32309)" (#32464)
03 дек 2025, 21:59
Не верифицирован
03 дек 2025, 21:59
a1ceed4
Код
Авторство
О чём код?
import {PullRequestConfig} from '@angular/ng-dev'; /** * Configuration for the pull request commands in `ng-dev`. This includes the * setup for the merge command. */ export const pullRequest: PullRequestConfig = { // By default, the merge script merges locally with `git cherry-pick` and autosquash. // This has the downside of pull requests showing up as `Closed` instead of `Merged`. // In the components repository, since we don't use fixup or squash commits, we can // use the Github API merge strategy. That way we ensure that PRs show up as `Merged`. githubApiMerge: { default: 'squash', labels: [{pattern: 'merge: preserve commits', method: 'rebase'}], }, };