refactor(core): rename `instructions/container.ts` -> `instructions/template.ts` (#34715)

Prior to this change, the `template` instruction logic was located in the `instructions/container.ts` file alongside embedded view instructions. Since unused embedded view instructions are removed in a previous commit, this commit renames `container.ts` -> `template.ts`, since only template-related instructions were retained.

PR Close #34715
This commit is contained in:
Andrew Kushnir 2020-04-22 17:52:57 -07:00 committed by Misko Hevery
parent 0c8adbc4ec
commit 28f3c1c96a
2 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
export * from './attribute';
export * from './attribute_interpolation';
export * from './change_detection';
export * from './container';
export * from './template';
export * from './storage';
export * from './di';
export * from './element';