Skip to content

Commit 4c841c9

Browse files
committed
chore: d
1 parent 0558150 commit 4c841c9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/utils.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ export function getSortOrder(sortBy) {
277277
* @returns {Promise<Record<string, number>>}
278278
*/
279279
export async function readFromDisk(cwd, compression, pattern, exclude, stripHash) {
280+
console.log('Using compression method', compression);
280281
const files = fs.globSync(pattern, {
281282
cwd,
282283
exclude: exclude ? [exclude] : undefined,
@@ -320,5 +321,6 @@ const compressionMethods = {
320321
* @return {Promise<number>}
321322
*/
322323
export async function compressContent(method, content) {
324+
console.log(compressionMethods[method]);
323325
return await compressionMethods[method](content);
324326
}

0 commit comments

Comments
 (0)