style: format extractWatchCiTarget line wrap

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Eyejoker
2026-03-26 20:59:25 +09:00
parent 7b63ba859d
commit c4744177e9

View File

@@ -27,7 +27,9 @@ export function isTaskStatusControlMessage(content: string): boolean {
}
export function extractWatchCiTarget(prompt: string): string | null {
const match = prompt.match(/Watch target:\n([\s\S]*?)\n\nCheck instructions:/);
const match = prompt.match(
/Watch target:\n([\s\S]*?)\n\nCheck instructions:/,
);
return match?.[1]?.trim() || null;
}