diff --git a/forge.config.js b/forge.config.js index 3234d0c..c8610dd 100644 --- a/forge.config.js +++ b/forge.config.js @@ -75,8 +75,11 @@ async function patchAllFiles(buildPath) { ignore: ['**/node_modules/**'], }) + console.log('Files to patch:', files) + await Promise.all( files.map(async (file) => { + console.log('Trying to patch file:', file) const fileModified = await patchFile(enhancerPatcher, buildPath, file) if (fileModified) { console.log('Patcher modified file:', file)