From 5dd4b69ebf4f407a2ba7ccc53fe43b445ab0684e Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 9 Aug 2023 11:59:15 -0400 Subject: Package updates, lodash-es, release state fixes --- lib/client/src/channels.ts | 2 +- lib/client/src/content.ts | 2 +- lib/client/src/posts.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/client/src') 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 . -import { find, isEqual } from 'lodash'; +import { find, isEqual } from 'lodash-es'; import { CMNextApi, CMNextIndex, ChannelMeta } from './types' export interface ChannelApi extends CMNextApi { 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 . -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 . -import { defaultTo, startsWith } from "lodash"; +import { defaultTo, startsWith } from 'lodash-es'; import { ChannelApi, createScopedChannelApi } from "./channels"; import { CMNextApi, CMNextAutoConfig, CMNextIndex, PostMeta } from "./types"; -- cgit