ksachdeva / angular2-progressbar

Angular 2 component for progressbar.js
MIT License
7 stars 5 forks source link

'ProgressBarModule' is not exported by... #5

Open wrosb opened 7 years ago

wrosb commented 7 years ago

Hello Kapil, thanks for this component.

It works like a charm ;)

I was trying to use it with ionic2 RC.1 but i figure out that is done with SystemJS and get this error:

bundle update failed: 'ProgressBarModule' is not exported by node_modules/angular2-progressbar/dist/index.js

I'm not sure how to get this done with ionic2 RC.1

Thanks in advanced for your time.

Sebschock commented 7 years ago

Had the same error. You can change line 40 of rollup.config.js (node_modules/@ionic/app-scripts/config/rollup.config.js) to:

commonjs({
  namedExports: {
    'node_modules/angular2-progressbar/dist/index.js':['CircleProgressComponent', 'ProgressBarModule']}
}),