Skip to content

Commit

Permalink
refactor: remove spread operators
Browse files Browse the repository at this point in the history
This is causing the consumption of the library to fail.

See: angular/angular#33614
  • Loading branch information
alan-agius4 committed Nov 6, 2019
1 parent 19b22d0 commit 85148c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/extended/module.ts
Expand Up @@ -33,8 +33,8 @@ const ALL_DIRECTIVES = [

@NgModule({
imports: [CoreModule],
declarations: [...ALL_DIRECTIVES],
exports: [...ALL_DIRECTIVES]
declarations: ALL_DIRECTIVES,
exports: ALL_DIRECTIVES
})
export class ExtendedModule {
}

0 comments on commit 85148c8

Please sign in to comment.