In the built dist we have
module.exports = WebpackBarPlugin;
in webpackbar.js, which means it should be imported as
import * as WebpackBar from 'webpackbar';
However, in generated type, it is declared as
export default WebpackBarPlugin;
which assumes it is imported as
import Webpackbar from 'webpackbar'
In the built dist we have
in
webpackbar.js, which means it should be imported asHowever, in generated type, it is declared as
which assumes it is imported as