postProcessModules not working now
See original GitHub issueDo you want to request a feature or report a bug? probably What is the current behavior?
// metro.config.js
module.exports = {
resolver: {
/* resolver options */
},
transformer: {
/* transformer options */
},
serializer: {
/* serializer options */
postProcessModules: function(modules, entryFiles) {
console.log(modules);
console.log(entryFiles);
},
},
server: {
/* server options */
},
};
I try to add breakpoint but it doesn’t execute the postProcessModules function.
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Resolved - Post Processing not working - Unity Forum
I have deleted "Post processing" Unity package, then I have deleted scripts those related to it. Than I have created "Volume" component in...
Read more >c# - Process.Modules working only right after start of process
Closed 7 years ago. I want to display all modules loaded into a specified process. I used this code and it works: Process...
Read more >emoncms/postprocess: Post Processing module for ... - GitHub
Symlink the web part of the postprocess module into emoncms/Modules, if not using Raspberry Pi replace 'pi' with your home folder name:.
Read more >S6 Modules Not Recognized
If the modules are getting a valid IP address but are still not available in the Config step it could be that they...
Read more >How to fix "The following module is missing from the file ...
Possible solutions: Restore the module and actually disable and uninstall it (recommended if possible): First, restore the module to its original location in ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Very helpful, thank you for your patience. Looking forward to the new features. I will fork it temporarily, maybe send a PR 😄
Hi @cliberal ! Thanks for reporting the issue!
postProcessModules
is currently being unused at the moment and we’re thinking about deprecating this option (I’m not sure that the API that it exposes is the right one).Out of curiosity, what are you trying to do with it?