mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-07 09:52:53 +00:00
refactor: extract markdown core package (#88265)
* refactor: extract markdown core package * refactor: remove old markdown sources * fix: use source paths for markdown core imports * fix: clean markdown package dependency ownership * fix: refresh root shrinkwrap for markdown dependency move
This commit is contained in:
committed by
GitHub
parent
0f8ea1d3d9
commit
99ffd714ce
@@ -1,3 +1,4 @@
|
||||
import { convertMarkdownTables } from "../../../packages/markdown-core/src/tables.js";
|
||||
import { resolveEffectiveMessagesConfig, resolveHumanDelayConfig } from "../../agents/identity.js";
|
||||
import {
|
||||
chunkByNewline,
|
||||
@@ -68,7 +69,6 @@ import {
|
||||
updateLastRoute,
|
||||
} from "../../config/sessions.js";
|
||||
import { getChannelActivity, recordChannelActivity } from "../../infra/channel-activity.js";
|
||||
import { convertMarkdownTables } from "../../markdown/tables.js";
|
||||
import {
|
||||
fetchRemoteMedia,
|
||||
readRemoteMediaBuffer,
|
||||
|
||||
@@ -81,7 +81,7 @@ export type PluginRuntimeChannel = {
|
||||
resolveTextChunkLimit: typeof import("../../auto-reply/chunk.js").resolveTextChunkLimit;
|
||||
hasControlCommand: typeof import("../../auto-reply/command-detection.js").hasControlCommand;
|
||||
resolveMarkdownTableMode: import("../../config/markdown-tables.types.js").ResolveMarkdownTableMode;
|
||||
convertMarkdownTables: typeof import("../../markdown/tables.js").convertMarkdownTables;
|
||||
convertMarkdownTables: typeof import("../../../packages/markdown-core/src/tables.js").convertMarkdownTables;
|
||||
};
|
||||
reply: {
|
||||
dispatchReplyWithBufferedBlockDispatcher: DispatchReplyWithBufferedBlockDispatcher;
|
||||
|
||||
Reference in New Issue
Block a user