aboutsummaryrefslogtreecommitdiff
path: root/lib/client/src
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-08-09 11:59:15 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-08-09 11:59:15 -0400
commit5dd4b69ebf4f407a2ba7ccc53fe43b445ab0684e (patch)
treec0e5613aa4e33c7f436f9c67d0a4d75c1b9bfb77 /lib/client/src
parentc3c0ece6fb3a66c2de545858731a066d5542ff1e (diff)
Package updates, lodash-es, release state fixes
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";