We have an application using RequireJS AMD modules that we're trying to build using Broccoli. I thought it might be feasible to generate just one JavaScript file with sourcemaps and use that both for development and deployment (perhaps only not running uglify to make build faster).
However, it takes quite a long time for r.js optimizer to run, so that doesn't seem to be the way. Is there a way to build my app as one file while still achieving reasonably fast builds on every file change? Or should I just let RequireJS load my modules one by one during development?
The information on this topic seems to be quite fragmented.