style: add blank line after note imports

This commit is contained in:
Peter Steinberger
2026-01-11 05:01:50 +01:00
parent 71791d5a6a
commit b4e9a0c975

View File

@@ -1,6 +1,7 @@
import { note as clackNote } from "@clack/prompts";
import { visibleWidth } from "./ansi.js";
import { stylePromptTitle } from "./prompt-style.js";
function splitLongWord(word: string, maxLen: number): string[] {
if (maxLen <= 0) return [word];
const chars = Array.from(word);