From 23bd666a6e9514f1737ea2d0dd9d983fa7b9c57d Mon Sep 17 00:00:00 2001 From: Shibo Lyu Date: Mon, 17 Mar 2025 01:30:08 +0800 Subject: [PATCH] fix: bump version and add toPlainText export --- deno.json | 2 +- richText/mod.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 4076058..fa376a9 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@blah/core", - "version": "0.4.2", + "version": "0.4.3", "exports": { "./crypto": "./crypto/mod.ts", "./identity": "./identity/mod.ts", diff --git a/richText/mod.ts b/richText/mod.ts index 6c9f234..491c7b3 100644 --- a/richText/mod.ts +++ b/richText/mod.ts @@ -31,3 +31,5 @@ import { } from "./richText.ts"; const blahRichTextSchema: z.ZodType = internalBlahRichTextSchema; export { type BlahRichText, blahRichTextSchema }; + +export * from "./toPlainText.ts";