Skip to content

Commit a1d3781

Browse files
authored
Merge pull request #4 from drupal-pattern-lab/patch-4
Updating global data to use `yml` or `yaml`
2 parents 0c30ad1 + 884c995 commit a1d3781

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)