I need to bundle several files into AMD bundles to be run in a sandboxed environment whith communication provided by an exernal module. Both rollup and webpack can do this, however
- Rollup relies on a commonjs bundler which does not understand ES6 imports (without explicit configuration, that is)
- Rollup does not clearly delineate separate modules into their own scope. Instead it relies on cleaver re-nameing of resources
- Rollup is newer
- Webpack re-capitulates the node requrie and as result Webpack bundles are larger than rollup and less clear how the code works
- Webpack uses
Function()
which is tantamount toeval()
which is, you know, evil, and would cause lint-based "don't-try-to-escape-the-sandbox" tests to fail.
Both of the libraries have:
- a JS API
- source maps
- compile to AMD
- bundle node module sources
- parceljs -- too focused on the "zero config" thing and didn't support un-minified bundles (for inspeciton purposes) or external modules
- typescript bundles - these bundle your code but not your dependencies...