Skip to content

Commit

Permalink
fix: accidental breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
crisbeto committed Oct 12, 2020
1 parent 1f32707 commit 03dc520
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-svg-round-progressbar",
"version": "5.0.1",
"version": "5.0.2",
"description": "Angular module that uses SVG to create a circular progressbar",
"scripts": {
"ng": "ng",
Expand Down
4 changes: 2 additions & 2 deletions src/demo/app/demo.module.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import {FormsModule} from '@angular/forms';
import {RoundprogressModule} from 'angular-svg-round-progressbar';
import {RoundProgressModule} from 'angular-svg-round-progressbar';
import {DemoComponent} from './demo.component';

@NgModule({
declarations: [DemoComponent],
imports: [BrowserModule, RoundprogressModule, FormsModule],
imports: [BrowserModule, RoundProgressModule, FormsModule],
bootstrap: [DemoComponent],
})
export class DemoModule {}
1 change: 1 addition & 0 deletions src/lib/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ export * from './round-progress/round-progress.component';
export * from './round-progress/round-progress.module';
export * from './round-progress/round-progress.ease';
export * from './round-progress/round-progress.config';
export {RoundProgressModule as RoundprogressModule} from './round-progress/round-progress.module';
2 changes: 1 addition & 1 deletion src/lib/round-progress/round-progress.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ import {ROUND_PROGRESS_DEFAULTS_PROVIDER} from './round-progress.config';
exports: [RoundProgressComponent],
providers: [ROUND_PROGRESS_DEFAULTS_PROVIDER],
})
export class RoundprogressModule {}
export class RoundProgressModule {}

0 comments on commit 03dc520

Please sign in to comment.