fix(schematics): always include a common module when generating an nglib

This commit is contained in:
vsavkin 2017-09-14 10:42:56 -04:00
parent 7e4a9f0e21
commit 8c62e8451f

View File

@ -1,6 +1,8 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
@NgModule({
imports: [CommonModule]
})
export class <%= className %>Module {
}