Fix API bundler. Use new esbuild context builder for it.

This commit is contained in:
2026-04-11 12:06:53 +01:00
parent c4f7cf9164
commit 814a289460
30 changed files with 465 additions and 15 deletions
+1
View File
@@ -1,6 +1,7 @@
import type { PageFiles } from "../types";
type Params = {
exclude_api?: boolean;
api_only?: boolean;
};
export default function grabAllPages(params?: Params): PageFiles[];
export {};