refactor(compiler-cli): Export hybrid_analysis symbols

Export symbols from hybrid_analysis from entrypoint
This commit is contained in:
Andrew Scott
2026-03-10 09:54:09 -07:00
committed by Andrew Scott
parent 55c57d4af1
commit ba1508886d
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -10,6 +10,7 @@
"packages/compiler-cli/private/bazel.ts",
"packages/compiler-cli/private/localize.ts",
"packages/compiler-cli/private/tooling.ts",
"packages/compiler-cli/private/hybrid_analysis.ts",
"packages/compiler-cli/private/babel.d.ts",
"packages/compiler-cli/src/bin/**",
"packages/core/schematics/utils/tsurge/helpers/angular_devkit/**",
+2
View File
@@ -22,6 +22,8 @@ export {CompilerOptions as AngularCompilerOptions} from './src/transformers/api'
// TODO: Remove this when the CLI has switched to the private entry-point.
export * from './private/tooling';
export * from './private/hybrid_analysis';
// Exposed as they are needed for relying on the `linker`.
export * from './src/ngtsc/logging';
export * from './src/ngtsc/file_system';
@@ -21,7 +21,7 @@ export type {
} from '../src/ngtsc/typecheck/api';
export {DomSchemaChecker, RegistryDomSchemaChecker} from '../src/ngtsc/typecheck/src/dom';
export {Environment} from '../src/ngtsc/typecheck/src/environment';
export type {OutOfBandDiagnosticRecorder} from '../src/ngtsc/typecheck/src/oob';
export {OutOfBandDiagnosticRecorder} from '../src/ngtsc/typecheck/src/oob';
export {TcbGenericContextBehavior} from '../src/ngtsc/typecheck/src/ops/context';
export {ImportManager} from '../src/ngtsc/translator';
export type {ReferenceEmitter} from '../src/ngtsc/imports';