c3js / c3

:bar_chart: A D3-based reusable chart library
http://c3js.org
MIT License
9.33k stars 1.39k forks source link

Add an ES6 module output #2740

Closed sisou closed 4 years ago

sisou commented 4 years ago

To use C3 in modern bundlers such as Rollup, an ES6 module build should be provided. Since the whole code is already in ES6 module form and Rollup supports the 'es' output target natively, this is a relative straight-forward addition.

This PR adds a second build output that is an ES6 module, which imports the D3 library internally and does not rely on a global window.d3 configuration.

I have successfully tested this in a Svelte project of mine with Rollup.