refactor(ivy): ngcc - remove the targetPath
properties of Transformer and Renderer (#29556)
We have already removed this concept from the public API. This just cleans it out altogether. The `targetPath` was an alternative output path to the original `basePath`. This is not really a very useful concept, since the actual target path of each output file is more complex and not consistently relative to the `basePath`. PR Close #29556
This commit is contained in:

committed by
Jason Aden

parent
632669f069
commit
c456b73302
@ -65,7 +65,7 @@ const SUPPORTED_FORMATS: EntryPointFormat[] = ['esm5', 'esm2015'];
|
||||
export function mainNgcc(
|
||||
{basePath, targetEntryPointPath, propertiesToConsider = SUPPORTED_FORMAT_PROPERTIES,
|
||||
compileAllFormats = true, createNewEntryPointFormats = false}: NgccOptions): void {
|
||||
const transformer = new Transformer(basePath, basePath);
|
||||
const transformer = new Transformer(basePath);
|
||||
const host = new DependencyHost();
|
||||
const resolver = new DependencyResolver(host);
|
||||
const finder = new EntryPointFinder(resolver);
|
||||
|
Reference in New Issue
Block a user