YAML Converter
Add this converter to read yaml files as json.
sh
npm add @loom-io/yaml-convertersh
pnpm add @loom-io/yaml-convertersh
bun add @loom-io/yaml-converterUsage
You can read and write yaml files with the suffixes yaml adn yml.
ts
import { createYamlConverter } from "@loom-io/yaml-converter";
const yamlFile = adapter.file("some/yaml/file.yaml");
const converter = createJsonConverter();
const data = await converter.parse(yamlFile);
data.val = "test";
await converter.unify(yamlFile, data);