Skip to content

Consume lodash via babel-plugin-lodash

Lukas Eipert requested to merge leipert-babel-plugin-lodash into master

What does this MR do?

If someone imports lodash like this:

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

import first from 'lodash/first';
import last from 'lodash/last';

which is tree-shakeable

Does this MR meet the acceptance criteria?

Conformity

  • Code review guidelines.
  • GitLab UI's contributing guidlines.
  • If it changes a Pajamas-compliant component's look & feel, the MR has been reviewed by a UX designer.
  • If it changes GitLab UI's documentation guidelines, the MR has been reviewed by a Technical Writer.
  • If the MR changes a component's API, integration MR(s) have been opened in the following projects to ensure that the @gitlab/ui package can be upgraded quickly after the changes are released:
  • Added the ~"component:*" label(s) if applicable.
Edited by Lukas Eipert

Merge request reports