Skip to content

Commit 884c995

Browse files
authored
Updating global data to use yml or yaml
1 parent e1c0509 commit 884c995

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PatternLab/Data.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public static function gather($options = array()) {
125125
$pathName = $file->getPathname();
126126
$pathNameClean = str_replace($sourceDir."/","",$pathName);
127127

128-
if (!$hidden && (($ext == "json") || ($ext == "yaml"))) {
128+
if (!$hidden && (($ext == "json") || ($ext == "yaml") || ($ext == "yml"))) {
129129

130130
if ($isListItems === false) {
131131

@@ -137,7 +137,7 @@ public static function gather($options = array()) {
137137
JSON::lastErrorMsg($pathNameClean,$jsonErrorMessage,$data);
138138
}
139139

140-
} else if ($ext == "yaml") {
140+
} else if (($ext == "yaml") || ($ext == "yml")) {
141141

142142
$file = file_get_contents($pathName);
143143

0 commit comments

Comments
 (0)