I am using webpack, and it is bundling files from bower_components. I want to use the non-minified version of a library, not the minified version.
How can I force webpack to do this?
[Edit]
The library in question is mithril.js. I know this can be an issue for other libraries, so this question isn't about mithril, but about webpack.
I just figured out that webpack is using the non-minified version of jquery, which is in node_modules, so maybe it's an issue with how the library is set up in bower.
[/Edit]