Skip to content

Commit

Permalink
fix: lib module and component naming issue
Browse files Browse the repository at this point in the history
  • Loading branch information
old-guy-coder committed Jan 3, 2019
1 parent 7274c20 commit dcba65e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions projects/ngx-fullcalendar-test/src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AppComponent } from './app.component';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { NgxFullcalendarModule } from 'ngx-fullcalendar';
import { NgxFullCalendarModule } from 'ngx-fullcalendar';

@NgModule({
declarations: [
Expand All @@ -10,7 +10,7 @@ import { NgxFullcalendarModule } from 'ngx-fullcalendar';
imports: [
BrowserModule,

NgxFullcalendarModule
NgxFullCalendarModule
],
providers: [],
bootstrap: [AppComponent]
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-fullcalendar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-fullcalendar",
"version": "4.0.5",
"version": "4.0.6",
"bugs": {
"url": "https://github.com/StickNitro/ngx-fullcalendar/issues"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const defaultConfig: FullCalendarOptions = {
selector: 'ngx-fullcalendar',
template: ` `
})
export class FullcalendarComponent implements OnInit, OnDestroy, AfterViewChecked, DoCheck, OnChanges {
export class FullCalendarComponent implements OnInit, OnDestroy, AfterViewChecked, DoCheck, OnChanges {

@Input() droppableRef: any;
@Input() options: FullCalendarOptions;
Expand Down
8 changes: 4 additions & 4 deletions projects/ngx-fullcalendar/src/lib/ngx-fullcalendar.module.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { FullcalendarComponent } from './fullcalendar.component';
import { FullCalendarComponent } from './fullcalendar.component';
import { NgModule } from '@angular/core';

@NgModule({
declarations: [
FullcalendarComponent
FullCalendarComponent
],
imports: [
],
exports: [
FullcalendarComponent
FullCalendarComponent
]
})
export class NgxFullcalendarModule { }
export class NgxFullCalendarModule { }

0 comments on commit dcba65e

Please sign in to comment.