I have couple of third-party libraries which depends on jquery version 1.8.3 whereas certain scripts require version 2.0+. How can I include multiple versions of jquery in webpack or in index.html file.
Currently i've used jquery plugin:
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery"
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],