mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
11 lines
347 B
TypeScript
11 lines
347 B
TypeScript
import {GithubConfig} from '@angular/dev-infra-private/ng-dev/utils/config';
|
|
|
|
/**
|
|
* 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: 'master',
|
|
};
|