@adhdev/daemon-standalone 0.9.77-rc.13 → 0.9.77-rc.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/public/assets/{index-6WEc6L46.js → index-CWWeDAva.js} +2 -2
- package/public/assets/{terminal-BeBmUW3m.js → terminal-B-dmfv31.js} +11 -11
- package/public/index.html +1 -1
- package/vendor/mcp-server/index.js +1 -1
- package/vendor/mcp-server/index.js.map +1 -1
package/dist/index.js
CHANGED
|
@@ -46300,7 +46300,7 @@ ${effect.notification.body || ""}`.trim();
|
|
|
46300
46300
|
async function handlePtyInput(h, args) {
|
|
46301
46301
|
const { cliType, data, targetSessionId } = args || {};
|
|
46302
46302
|
if (!data) return { success: false, error: "data required" };
|
|
46303
|
-
const cleanData = typeof data === "string" ? data.replace(/\x1b\[
|
|
46303
|
+
const cleanData = typeof data === "string" ? data.replace(/\x1b\[[?>][0-9;]*c/g, "") : data;
|
|
46304
46304
|
if (!cleanData) return { success: true };
|
|
46305
46305
|
const adapter = h.getCliAdapter(targetSessionId || cliType);
|
|
46306
46306
|
if (!adapter || typeof adapter.writeRaw !== "function") {
|