Skip to content

Commit

Permalink
aot compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuKKu- committed Jun 9, 2017
1 parent 6568254 commit 246eb07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { ParticlesComponent } from './particles.component';
import { ParticlesDirective } from './particles.directive';

export * from './particles.component';
export * from './particles.directive';

@NgModule({
imports: [
Expand All @@ -15,7 +16,8 @@ export * from './particles.component';
ParticlesDirective
],
exports: [
ParticlesComponent
ParticlesComponent,
ParticlesDirective
]
})
export class ParticlesModule { }
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-particle",
"version": "1.0.2",
"version": "1.0.4",
"repository": {
"type": "git",
"url": "https://github.com/ryuKKu-/angular-particle"
Expand Down

0 comments on commit 246eb07

Please sign in to comment.