I have a Node app which uses the fork method to run a background process. The problem is that running the web pack configuration from the index doesn't bundle the background process's files resulting in an error when reaching the fork.
All the code uses Babel syntax along with some other goodies.
How do I tell webpack to also bundle the forked files?
Thanks in advance.