boxwood 0.71.0 → 0.71.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -455,7 +455,7 @@ const yaml = {
|
|
|
455
455
|
load() {
|
|
456
456
|
const path = join(...arguments)
|
|
457
457
|
const file = path.endsWith(".yaml") ? path : join(path, "index.yaml")
|
|
458
|
-
const content = readFileSync(
|
|
458
|
+
const content = readFileSync(file, "utf8")
|
|
459
459
|
return YAML.parse(content)
|
|
460
460
|
},
|
|
461
461
|
}
|