Files
aklive2d/packages/libs/libs/yaml.js
2025-04-30 20:39:17 +08:00

20 lines
536 B
JavaScript

import fs from 'node:fs'
import path from 'node:path'
import { parse } from 'yaml'
export function read(file_dir, customTags = []) {
const include = {
identify: (value) => value.startsWith('!include'),
tag: '!include',
resolve(str) {
const dir = path.resolve(path.dirname(file_dir), str)
const data = read(dir)
return data
},
}
const file = fs.readFileSync(file_dir, 'utf8')
return parse(file, {
customTags: [include, ...customTags],
})
}