[WEB-5027] fix: replace lodash package with lodash-es (#7856)

* fix: replace lodash pacakge with lodash-es

* fix: lint errors

* fix: import fixes
This commit is contained in:
sriram veeraghanta 2025-09-26 17:59:31 +05:30 committed by GitHub
parent c05a5eb5ee
commit bedc1fae1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
199 changed files with 261 additions and 396 deletions

View file

@ -1,4 +1,4 @@
import set from "lodash/set";
import { set } from "lodash-es";
import { action, computed, makeObservable, observable, runInAction } from "mobx";
import { computedFn } from "mobx-utils";
// plane imports

View file

@ -1,4 +1,4 @@
import cloneDeep from "lodash/cloneDeep";
import { cloneDeep } from "lodash-es";
import { toJS } from "mobx";
// plane imports
import { DEFAULT_FILTER_EXPRESSION_OPTIONS, TExpressionOptions } from "@plane/constants";

View file

@ -1,4 +1,4 @@
import cloneDeep from "lodash/cloneDeep";
import { cloneDeep } from "lodash-es";
import { action, computed, makeObservable, observable, toJS } from "mobx";
import { computedFn } from "mobx-utils";
import { v4 as uuidv4 } from "uuid";

View file

@ -1,5 +1,5 @@
// plane imports
import isEmpty from "lodash/isEmpty";
import { isEmpty } from "lodash-es";
import {
LOGICAL_OPERATOR,
SingleOrArray,