Skip to content

Commit d5faadc

Browse files
committed
[FIX] fileUtils: Correctly provide stat property on readFile result
The fileInfo object contains property 'stat', not 'stats'. I couldn't find any usage of the property on the readFile result though.
1 parent 45e28e2 commit d5faadc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fileUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module.exports = function(fs) {
5757
content: content,
5858
path: fileInfo.path,
5959
localPath: lessInputPath,
60-
stats: fileInfo.stats
60+
stat: fileInfo.stat
6161
});
6262
}
6363
});

0 commit comments

Comments
 (0)