I was just glancing at the repo and demo site, and this library looks promising for some features I need to build. However, Bundlephobia indicates that the library is currently 200KB min+gz, which is very bad for bundle size. I'm also concerned about the percentage of the lib bundle that is coming from Moment:
https://bundlephobia.com/result?p=react-timeline-9000@1.1.3

Do you have any info on the actual effect of this lib on app bundle size? Can work be done to optimize the package to shrink that size? stuff like turning on sideEffects: false in the package declaration, perhaps swapping use of Moment for another date library, etc.
I was just glancing at the repo and demo site, and this library looks promising for some features I need to build. However, Bundlephobia indicates that the library is currently 200KB min+gz, which is very bad for bundle size. I'm also concerned about the percentage of the lib bundle that is coming from Moment:
https://bundlephobia.com/result?p=react-timeline-9000@1.1.3
Do you have any info on the actual effect of this lib on app bundle size? Can work be done to optimize the package to shrink that size? stuff like turning on
sideEffects: falsein the package declaration, perhaps swapping use of Moment for another date library, etc.