ultimate-jekyll-manager 1.9.18 → 1.9.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -373,6 +373,7 @@ function lowercaseExtTransform() {
|
|
|
373
373
|
if (file.isNull()) {
|
|
374
374
|
file.contents = jetpack.read(file.path, 'buffer');
|
|
375
375
|
}
|
|
376
|
+
logger.log(`🔍 Uppercase ext: ${file.relative}, isNull=${file.isNull()}, isBuffer=${file.isBuffer()}, contentsLen=${file.contents ? file.contents.length : 'N/A'}, firstBytes=${file.contents ? file.contents.slice(0, 4).toString('hex') : 'N/A'}`);
|
|
376
377
|
file.path = file.path.slice(0, -ext.length) + ext.toLowerCase();
|
|
377
378
|
}
|
|
378
379
|
cb(null, file);
|