Does CodeMirror have a single bundle of all the files?

Currently I have to carry a lot of files and folders to use CodeMirror in my project, I was wondering if there is a bundle of a single or a couple of .js files that would contain all the addon, plugins, themes etc.? I was told there is a rollup.config.js, is that for this purpose and how do you use it exactly? Thank you!

CodeMirror doesn’t come with anything like this, and its rollup.config.js is just used to build the core library (lib/codemirror.js). Bundler software like webpack can create such files for you, though. (Or, if you don’t want to use a module system, just concatenating the files should work too.)