webpack-externalize-lodash-fp
v1.0.4
Published
Externalizes lodash from you webpack bundle. Handles all import cases.
Downloads
48
Maintainers
Readme
This module exports a simple utility function that externalizes lodash from your bundle. But it works with fp too.
yarn add webpack-externalize-lodash-fp
Why this is needed
There are many ways to use lodash:
import { get } from 'lodash/fp'
import get from 'lodash/fp/get'
import { get } from 'lodash'
import { get } from 'lodash-es'
import get from 'lodash/get'
import get from 'lodash-es/get'
import get from 'lodash.get'
As your project grows and depends on different libraries, some of them will use different lodash helpers, imported in a different way. As a result your bundle will sometimes include lodash multiple times, even if you have it defined it as external in webpack lodash: "_"
(this covers only one case).
So the only way to prevent it from being included into your bundle is use externals function which handles all cases. That's exactly what this package does.
Usage
Inside your webpack config
externals: [
{...} // your config,
require('webpack-externalize-lodash-fp')
]
and load it inside your html file
<script src="https://cdn.jsdelivr.net/g/lodash@4(lodash.min.js+lodash.fp.min.js)"></script>
<script>
var fp = _.noConflict();
</script>