refactor(aio): order custom elements by selector (#23944)

PR Close #23944
This commit is contained in:
George Kalpakas 2018-05-15 19:49:50 +03:00 committed by Matias Niemelä
parent ae86cb3be0
commit 7a9c987e56
1 changed files with 11 additions and 11 deletions

View File

@ -13,8 +13,8 @@ export const ELEMENT_MODULE_PATHS_AS_ROUTES = [
loadChildren: './api/api-list.module#ApiListModule'
},
{
selector: 'live-example',
loadChildren: './live-example/live-example.module#LiveExampleModule'
selector: 'aio-contributor-list',
loadChildren: './contributor/contributor-list.module#ContributorListModule'
},
{
selector: 'aio-file-not-found-search',
@ -25,25 +25,25 @@ export const ELEMENT_MODULE_PATHS_AS_ROUTES = [
loadChildren: './resource/resource-list.module#ResourceListModule'
},
{
selector: 'current-location',
loadChildren: './current-location/current-location.module#CurrentLocationModule'
},
{
selector: 'aio-contributor-list',
loadChildren: './contributor/contributor-list.module#ContributorListModule'
selector: 'code-example',
loadChildren: './code/code-example.module#CodeExampleModule'
},
{
selector: 'code-tabs',
loadChildren: './code/code-tabs.module#CodeTabsModule'
},
{
selector: 'code-example',
loadChildren: './code/code-example.module#CodeExampleModule'
selector: 'current-location',
loadChildren: './current-location/current-location.module#CurrentLocationModule'
},
{
selector: 'expandable-section',
loadChildren: './expandable-section/expandable-section.module#ExpandableSectionModule'
}
},
{
selector: 'live-example',
loadChildren: './live-example/live-example.module#LiveExampleModule'
},
];
/**