Webpack is pretty nice, but it feels so 2014. In 2015, we have ES6 modules now. Instead of define/require, we have import/export and it is standards based now, which is nice. For systems that do not support ES6 syntax directly, this is provided today with tools like SystemJS [1] and jspm [2]. SystemJS is great because it supports all of the module formats for backwards compatibility. jspm is great because it doesn't…
In 2015, we have ES6 modules now. Instead of define/require, we have import/export and it is standards based now, which is nice. Wouldn't using something like Babel remove that issue?
The problem is supporting dependencies. You need something that can load everything, which is the functionality that SystemJS provides.