From b2e9bc186fe7b7c882b20c8a9e5d6d26b625343f Mon Sep 17 00:00:00 2001 From: Luc RAYMOND Date: Wed, 7 Jun 2017 18:58:09 +1000 Subject: [PATCH] fix duplicate module --- src/package.json | 2 +- src/particles.component.ts | 2 +- src/particles.module.ts | 21 --------------------- 3 files changed, 2 insertions(+), 23 deletions(-) delete mode 100644 src/particles.module.ts diff --git a/src/package.json b/src/package.json index 300582d..e4c3680 100644 --- a/src/package.json +++ b/src/package.json @@ -1,6 +1,6 @@ { "name": "angular-particle", - "version": "0.1.0", + "version": "1.0.0", "repository": { "type": "git", "url": "https://github.com/ryuKKu-/angular-particle" diff --git a/src/particles.component.ts b/src/particles.component.ts index 6477efa..944b434 100644 --- a/src/particles.component.ts +++ b/src/particles.component.ts @@ -1,5 +1,5 @@ import { Component, Input, OnInit } from '@angular/core'; -import { IParams } from './lib'; +import { IParams } from './lib/index'; @Component({ selector: 'particles', diff --git a/src/particles.module.ts b/src/particles.module.ts deleted file mode 100644 index fb3b83e..0000000 --- a/src/particles.module.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -import { ParticlesComponent } from './particles.component'; -import { ParticlesDirective } from './particles.directive'; - - -@NgModule({ - imports: [ - CommonModule - ], - declarations: [ - ParticlesComponent, - ParticlesDirective - ], - exports: [ - ParticlesComponent, - ParticlesDirective - ] -}) -export class ParticlesModule {} \ No newline at end of file