/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/core/src/render3/instructions/all.ts
67 строк
2 KB
Leon Senft
refactor(compiler): emit instructions for foreign components
28 май 2026, 02:39
Не верифицирован
28 май 2026, 02:39
6981cd7
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC 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.dev/license */ /* * This file re-exports all symbols contained in this directory. * * Why is this file not `index.ts`? * * There seems to be an inconsistent path resolution of an `index.ts` file * when only the parent directory is referenced. This could be due to the * node module resolution configuration differing from rollup and/or typescript. * * With commit * https://github.com/angular/angular/commit/d5e3f2c64bd13ce83e7c70788b7fc514ca4a9918 * the `instructions.ts` file was moved to `instructions/instructions.ts` and an * `index.ts` file was used to re-export everything. Having had file names that were * importing from `instructions' directly (not the from the sub file or the `index.ts` * file) caused strange CI issues. `index.ts` had to be renamed to `all.ts` for this * to work. * * Jira Issue = FW-1184 */ export * from '../../defer/instructions'; export * from './advance'; export * from './aria_property'; export * from './attribute'; export * from './animation'; export * from './change_detection'; export * from './component_instance'; export * from './control'; export * from './control_flow'; export * from './di'; export * from './di_attr'; export * from './element'; export * from './element_container'; export * from './foreign_component'; export { ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, } from './element_validation'; export * from './get_current_view'; export * from './dom_property'; export * from './i18n'; export * from './listener'; export * from './namespace'; export * from './next_context'; export * from './projection'; export * from './property'; export * from './queries'; export * from './queries_signals'; export * from './storage'; export * from './styling'; export * from './template'; export * from './text'; export * from './text_interpolation'; export * from './two_way'; export * from './let_declaration'; export * from './attach_source_locations'; export * from './value_interpolation'; export * from './arrow_function';