UNPKG

ruins

Version:

> [!IMPORTANT] > This is in beta. Not everything is ironed out and some modules might misbehave

14 lines 483 B
import { loadConfig } from "c12"; import { getConfig } from "./getConfig.js"; import { resolve } from "node:path"; export const getTodos = async () => { const settings = await getConfig(); // TODO: fix this path stuff const cwdFromNpm = process.cwd().replace(/\/api/, ""); const { config } = await loadConfig({ cwd: resolve(cwdFromNpm, settings.dir), configFile: settings.files.todos, }); return config; }; //# sourceMappingURL=getTodos.js.map