aboutsummaryrefslogtreecommitdiff
path: root/lib/client/src
diff options
context:
space:
mode:
Diffstat (limited to 'lib/client/src')
-rw-r--r--lib/client/src/channels.ts2
-rw-r--r--lib/client/src/content.ts2
-rw-r--r--lib/client/src/posts.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/client/src/channels.ts b/lib/client/src/channels.ts
index b5fb817..6ddecca 100644
--- a/lib/client/src/channels.ts
+++ b/lib/client/src/channels.ts
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
-import { find, isEqual } from 'lodash';
+import { find, isEqual } from 'lodash-es';
import { CMNextApi, CMNextIndex, ChannelMeta } from './types'
export interface ChannelApi extends CMNextApi<ChannelMeta> {
diff --git a/lib/client/src/content.ts b/lib/client/src/content.ts
index f801432..c1a62aa 100644
--- a/lib/client/src/content.ts
+++ b/lib/client/src/content.ts
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
-import { startsWith } from "lodash";
+import { startsWith } from 'lodash-es';
import { CMNextApi, CMNextAutoConfig, CMNextEntity, CMNextIndex, ContentMeta } from "./types";
import { createScopedChannelApi } from "./channels";
diff --git a/lib/client/src/posts.ts b/lib/client/src/posts.ts
index f673b21..d2c8791 100644
--- a/lib/client/src/posts.ts
+++ b/lib/client/src/posts.ts
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
-import { defaultTo, startsWith } from "lodash";
+import { defaultTo, startsWith } from 'lodash-es';
import { ChannelApi, createScopedChannelApi } from "./channels";
import { CMNextApi, CMNextAutoConfig, CMNextIndex, PostMeta } from "./types";