mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00: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. PR Close #46976
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
import {GithubConfig} from '@angular/ng-dev';
|
|
|
|
/**
|
|
* Github configuration for the `ng-dev` command. This repository is used as
|
|
* remote for the merge script and other utilities like `ng-dev pr rebase`.
|
|
*/
|
|
export const github: GithubConfig = {
|
|
owner: 'angular',
|
|
name: 'angular',
|
|
mainBranchName: 'main',
|
|
};
|