mirror of
https://github.com/directus/directus.git
synced 2026-01-14 08:37:57 -05:00
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import yaml from 'js-yaml';
|
|
import { readFileSync } from 'node:fs';
|
|
|
|
export const requireYaml = (filepath: string) => {
|
|
const yamlRaw = readFileSync(filepath, 'utf8');
|
|
return yaml.load(yamlRaw);
|
|
};
|