···22import * as fs from "node:fs/promises";
33import * as path from "node:path";
44import mimeTypes from "mime-types";
55-import type { BlogPost, BlobObject } from "../lib/types";
55+import type { BlogPost, BlobObject } from "../../../cli/src/lib/types";
6677const LEXICON = "space.remanso.note";
88const MAX_CONTENT = 10000;
+1-1
packages/remanso/src/commands/publish.ts
···3535 deleteNote,
3636 findPostsWithStaleLinks,
3737 type NoteOptions,
3838-} from "../../../cli/src/extensions/remanso";
3838+} from "../lib/note";
39394040async function fileExists(filePath: string): Promise<boolean> {
4141 try {