* Get all YAML files in the data directory * @returns {string[]} Array of file paths
()
| 18 | * @returns {string[]} Array of file paths |
| 19 | */ |
| 20 | function getAllYamlFiles() { |
| 21 | const pattern = path.join(DATA_DIR, '**/*.yaml'); |
| 22 | return glob.sync(pattern); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Load and parse a YAML file |