mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 19:13:34 +08:00
18 lines
570 B
TypeScript
18 lines
570 B
TypeScript
/**
|
|
* @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
|
|
*/
|
|
|
|
// resolve dependencies within the target project
|
|
export function resolveProjectModule(root: string, moduleName: string) {
|
|
return require.resolve(moduleName, { paths: [root] });
|
|
}
|
|
|
|
// require dependencies within the target project
|
|
export function requireProjectModule(root: string, moduleName: string) {
|
|
return require(resolveProjectModule(root, moduleName));
|
|
}
|