From cdd1a9d0c22179570c276ce0c3ce9280772bc96c Mon Sep 17 00:00:00 2001 From: Luc RAYMOND Date: Wed, 7 Jun 2017 20:18:06 +1000 Subject: [PATCH] fixing stuff --- src/index.ts | 5 +++-- src/package.json | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 713e504..60d988d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,6 +4,8 @@ import { CommonModule } from '@angular/common'; import { ParticlesComponent } from './particles.component'; import { ParticlesDirective } from './particles.directive'; +export * from './particles.component'; + @NgModule({ imports: [ CommonModule @@ -13,8 +15,7 @@ import { ParticlesDirective } from './particles.directive'; ParticlesDirective ], exports: [ - ParticlesComponent, - ParticlesDirective + ParticlesComponent ] }) export class ParticlesModule { } \ No newline at end of file diff --git a/src/package.json b/src/package.json index e4c3680..052bff0 100644 --- a/src/package.json +++ b/src/package.json @@ -1,6 +1,6 @@ { "name": "angular-particle", - "version": "1.0.0", + "version": "1.0.2", "repository": { "type": "git", "url": "https://github.com/ryuKKu-/angular-particle"