build: add github config for ng-dev configuration (#37097)

Adds the gitub configuration to the ng-dev configuration. This github
configuration provides information needed for making API requests to
github.  Upcoming tooling related PRs will require these API requests
being possible.

PR Close #37097
This commit is contained in:
Joey Perrott
2020-05-12 15:26:30 -07:00
committed by Kara Erickson
parent 20d377c11b
commit 564ca9e8ec
2 changed files with 14 additions and 5 deletions

View File

@ -72,8 +72,15 @@ const format = {
'buildifier': true
};
// Github metadata information for `ng-dev` commands.
const github = {
owner: 'angular',
name: 'angular',
};
// Export function to build ng-dev configuration object.
module.exports = {
commitMessage,
format,
github,
};