When compiling libraries, this feature extracts the minimal information from the directives/pipes/modules of the library into `.ngsummary.json` files, so that applications that use this library only need to be recompiled if one of the summary files change, but not on every change of the libraries (e.g. one of the templates). Only works if individual codegen for libraries is enabled, see the `generateCodeForLibraries: false` option. Closes #12787
78 lines
2.4 KiB
TypeScript
78 lines
2.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. 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.io/license
|
|
*/
|
|
|
|
import {ApplicationRef, NgModule} from '@angular/core';
|
|
import {FormsModule} from '@angular/forms';
|
|
import {ServerModule} from '@angular/platform-server';
|
|
import {MdButtonModule} from '@angular2-material/button';
|
|
|
|
// Note: don't refer to third_party_src as we want to test that
|
|
// we can compile components from node_modules!
|
|
import {ThirdpartyModule} from 'third_party/module';
|
|
|
|
import {MultipleComponentsMyComp, NextComp} from './a/multiple_components';
|
|
import {AnimateCmp} from './animate';
|
|
import {BasicComp} from './basic';
|
|
import {ComponentUsingThirdParty} from './comp_using_3rdp';
|
|
import {CompWithAnalyzeEntryComponentsProvider, CompWithEntryComponents} from './entry_components';
|
|
import {CompConsumingEvents, CompUsingPipes, CompWithProviders, CompWithReferences, DirPublishingEvents, ModuleUsingCustomElements} from './features';
|
|
import {CompUsingRootModuleDirectiveAndPipe, SomeDirectiveInRootModule, SomeLibModule, SomePipeInRootModule, SomeService} from './module_fixtures';
|
|
import {CompWithNgContent, ProjectingComp} from './projection';
|
|
import {CompForChildQuery, CompWithChildQuery, CompWithDirectiveChild, DirectiveForQuery} from './queries';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AnimateCmp,
|
|
BasicComp,
|
|
CompConsumingEvents,
|
|
CompForChildQuery,
|
|
CompUsingPipes,
|
|
CompUsingRootModuleDirectiveAndPipe,
|
|
CompWithAnalyzeEntryComponentsProvider,
|
|
CompWithChildQuery,
|
|
CompWithDirectiveChild,
|
|
CompWithEntryComponents,
|
|
CompWithNgContent,
|
|
CompWithProviders,
|
|
CompWithReferences,
|
|
DirectiveForQuery,
|
|
DirPublishingEvents,
|
|
MultipleComponentsMyComp,
|
|
NextComp,
|
|
ProjectingComp,
|
|
SomeDirectiveInRootModule,
|
|
SomePipeInRootModule,
|
|
ComponentUsingThirdParty,
|
|
],
|
|
imports: [
|
|
ServerModule,
|
|
FormsModule,
|
|
MdButtonModule,
|
|
ModuleUsingCustomElements,
|
|
SomeLibModule.withProviders(),
|
|
ThirdpartyModule,
|
|
],
|
|
providers: [SomeService],
|
|
entryComponents: [
|
|
AnimateCmp,
|
|
BasicComp,
|
|
CompUsingRootModuleDirectiveAndPipe,
|
|
CompWithAnalyzeEntryComponentsProvider,
|
|
CompWithChildQuery,
|
|
CompWithEntryComponents,
|
|
CompWithReferences,
|
|
ProjectingComp,
|
|
ComponentUsingThirdParty,
|
|
]
|
|
})
|
|
export class MainModule {
|
|
constructor(public appRef: ApplicationRef) {}
|
|
|
|
ngDoBootstrap() {}
|
|
}
|