perf: Consume lodash via babel-plugin-lodash
If someone imports lodash like this:
```js
import { first, last } from 'lodash';
```
It will lead to a complete inclusion of `lodash` in GitLab.
By simply utilizing `babel-plugin-lodash` we can ensure it is rewritten
as:
```js
import first from 'lodash/first';
import last from 'lodash/last';
```
which is tree-shakeable
Loading
- 
mentioned in commit bf83d7e3 
- 
💬 @renovate-botmentioned in merge request rpadovani/daintree!231 (merged) 
- 
mentioned in merge request gitlab!36844 (merged) 
- 
mentioned in merge request gitlab-org/gitlab-services/design.gitlab.com!2007 (merged) 
- 
mentioned in merge request status-page!87 (closed) 
- 
mentioned in merge request status-page!97 (merged) 
Please register or sign in to comment