import { BunPlugin } from "bun"; import { readFileSync } from "fs"; import { load } from "js-yaml"; function YamlPlugin(): BunPlugin { return { name: "bun-plugin-yaml", setup(builder) { builder.onLoad({ filter: /\.(yaml|yml)$/ }, args => { const text = readFileSync(args.path, "utf8"); const exports = load(text) as Record; return { exports, loader: "object", }; }); }, }; } export default YamlPlugin;