From 639f78d257f6568ce3c7b5d47e024ceaaf0252f4 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Thu, 19 Mar 2026 09:38:35 -0700 Subject: [PATCH] style(format): restore import order drift --- src/infra/outbound/channel-selection.ts | 2 +- src/plugins/bundle-mcp.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/infra/outbound/channel-selection.ts b/src/infra/outbound/channel-selection.ts index f9c6f558769..569ea343c52 100644 --- a/src/infra/outbound/channel-selection.ts +++ b/src/infra/outbound/channel-selection.ts @@ -1,6 +1,6 @@ +import { listChannelPlugins } from "../../channels/plugins/index.js"; import type { ChannelPlugin } from "../../channels/plugins/types.js"; import type { OpenClawConfig } from "../../config/config.js"; -import { listChannelPlugins } from "../../channels/plugins/index.js"; import { defaultRuntime } from "../../runtime.js"; import { listDeliverableMessageChannels, diff --git a/src/plugins/bundle-mcp.ts b/src/plugins/bundle-mcp.ts index 620eb4a0a1f..ebe1b369f3c 100644 --- a/src/plugins/bundle-mcp.ts +++ b/src/plugins/bundle-mcp.ts @@ -1,7 +1,6 @@ import fs from "node:fs"; import path from "node:path"; import type { OpenClawConfig } from "../config/config.js"; -import type { PluginBundleFormat } from "./types.js"; import { applyMergePatch } from "../config/merge-patch.js"; import { openBoundaryFileSync } from "../infra/boundary-file-read.js"; import { isRecord } from "../utils.js"; @@ -15,6 +14,7 @@ import { import { normalizePluginsConfig, resolveEffectiveEnableState } from "./config-state.js"; import { loadPluginManifestRegistry } from "./manifest-registry.js"; import { safeRealpathSync } from "./path-safety.js"; +import type { PluginBundleFormat } from "./types.js"; export type BundleMcpServerConfig = Record;