Skip to content

Commit 7a899bc

Browse files
author
Phil Sturgeon
authored
Merge pull request #235 from wparad/upgrade-js-yaml
fix: upgrade js-yaml from v3.x to v4.1
2 parents 5c6d51a + 0b6be7a commit 7a899bc

File tree

4 files changed

+20015
-266
lines changed

4 files changed

+20015
-266
lines changed

lib/parsers/yaml.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module.exports = {
4545

4646
if (typeof data === "string") {
4747
try {
48-
return yaml.safeLoad(data);
48+
return yaml.load(data);
4949
}
5050
catch (e) {
5151
throw new ParserError(e.message, file.url);

0 commit comments

Comments
 (0)