2020-03-16 14:31:24 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
2020-05-04 15:33:14 -04:00
|
|
|
|
2020-03-16 14:31:24 -04:00
|
|
|
import {join} from 'path';
|
|
|
|
import {exec} from 'shelljs';
|
|
|
|
|
2020-05-08 13:03:47 -04:00
|
|
|
// The filename expected for creating the ng-dev config, without the file
|
|
|
|
// extension to allow either a typescript or javascript file to be used.
|
|
|
|
const CONFIG_FILE_NAME = '.ng-dev-config';
|
2020-05-04 15:33:14 -04:00
|
|
|
|
2020-03-16 14:31:24 -04:00
|
|
|
/**
|
|
|
|
* Gets the path of the directory for the repository base.
|
|
|
|
*/
|
2020-03-10 13:29:44 -04:00
|
|
|
export function getRepoBaseDir() {
|
2020-03-16 14:31:24 -04:00
|
|
|
const baseRepoDir = exec(`git rev-parse --show-toplevel`, {silent: true});
|
|
|
|
if (baseRepoDir.code) {
|
|
|
|
throw Error(
|
|
|
|
`Unable to find the path to the base directory of the repository.\n` +
|
|
|
|
`Was the command run from inside of the repo?\n\n` +
|
|
|
|
`ERROR:\n ${baseRepoDir.stderr}`);
|
|
|
|
}
|
|
|
|
return baseRepoDir.trim();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-05-04 15:33:14 -04:00
|
|
|
* Retrieve the configuration from the .ng-dev-config.js file.
|
2020-03-16 14:31:24 -04:00
|
|
|
*/
|
2020-05-04 15:33:14 -04:00
|
|
|
export function getAngularDevConfig<K, T>(supressError = false): DevInfraConfig<K, T> {
|
|
|
|
const configPath = join(getRepoBaseDir(), CONFIG_FILE_NAME);
|
2020-03-16 14:31:24 -04:00
|
|
|
try {
|
2020-05-04 15:33:14 -04:00
|
|
|
return require(configPath) as DevInfraConfig<K, T>;
|
|
|
|
} catch (err) {
|
|
|
|
if (!supressError) {
|
|
|
|
throw Error(`Unable to load config file at:\n ${configPath}`);
|
|
|
|
}
|
2020-03-16 14:31:24 -04:00
|
|
|
}
|
2020-05-04 15:33:14 -04:00
|
|
|
return {} as DevInfraConfig<K, T>;
|
2020-03-16 14:31:24 -04:00
|
|
|
}
|
|
|
|
|
2020-03-10 13:29:44 -04:00
|
|
|
/**
|
|
|
|
* Interface exressing the expected structure of the DevInfraConfig.
|
|
|
|
* Allows for providing a typing for a part of the config to read.
|
|
|
|
*/
|
2020-04-13 19:40:21 -04:00
|
|
|
export interface DevInfraConfig<K, T> {
|
|
|
|
[K: string]: T;
|
|
|
|
}
|