mirror of
https://github.com/zadam/trilium.git
synced 2025-11-06 05:15:59 +01:00
10 lines
255 B
TypeScript
10 lines
255 B
TypeScript
|
|
import { execSync } from "child_process";
|
||
|
|
import BuildContext from "./context";
|
||
|
|
|
||
|
|
export default function buildScriptApi({ }: BuildContext) {
|
||
|
|
execSync(`pnpm typedoc`, {
|
||
|
|
stdio: "inherit"
|
||
|
|
// * Output dir is set in typedoc.json.
|
||
|
|
});
|
||
|
|
}
|