i have a screenplay folder and that has a renderer, preload and many assets. All works normally!
After adding your plugin, my code break all.
After 15 minutes of researching, i find out:
Error in console: "Uncaught Error: Cannot find module './sub_window.compiled.jsc'"
Cause by:
My index.html has included sub_window.js, in subwindow.js include "./sub_window.compiled.jsc", but actually it must be "../sub_window.compiled.jsc" because it is included in sub_window/index.html
Right now i have to modified my code after run built. Just adding a DOT in a file :D

i have a screenplay folder and that has a renderer, preload and many assets. All works normally!
After adding your plugin, my code break all.
After 15 minutes of researching, i find out:
Error in console: "Uncaught Error: Cannot find module './sub_window.compiled.jsc'"
Cause by:
My index.html has included sub_window.js, in subwindow.js include "./sub_window.compiled.jsc", but actually it must be "../sub_window.compiled.jsc" because it is included in sub_window/index.html
Right now i have to modified my code after run built. Just adding a DOT in a file :D