We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0c30ad1 + 884c995 commit a1d3781Copy full SHA for a1d3781
src/PatternLab/Data.php
@@ -125,7 +125,7 @@ public static function gather($options = array()) {
125
$pathName = $file->getPathname();
126
$pathNameClean = str_replace($sourceDir."/","",$pathName);
127
128
- if (!$hidden && (($ext == "json") || ($ext == "yaml"))) {
+ if (!$hidden && (($ext == "json") || ($ext == "yaml") || ($ext == "yml"))) {
129
130
if ($isListItems === false) {
131
@@ -137,7 +137,7 @@ public static function gather($options = array()) {
137
JSON::lastErrorMsg($pathNameClean,$jsonErrorMessage,$data);
138
}
139
140
- } else if ($ext == "yaml") {
+ } else if (($ext == "yaml") || ($ext == "yml")) {
141
142
$file = file_get_contents($pathName);
143
0 commit comments