Rollup 0.48 introduces a few changes to the options object, because the current options are confusingly different between the CLI and the options exported by your config file.
entryis nowinputsourceMapandsourceMapFileare nowsourcemapandsourcemapFile(note casing)moduleNameis nownameuseStrictis nowstrict
The dest and format options are now grouped together as a single output: { file, format, ... } object. output can also be an array of { file, format, ... } objects, in which case it behaves similarly to the current targets. Other output options — exports, paths and so on — can be added to the output object (though they will fall back to their top-level namesakes, if unspecified).
So this...
// old rollup.config.js
export default {
entry: 'src/main.js',
dest: 'public/bundle.js',
format: 'iife',
moduleName: 'App',
sourceMap: true
};...would become this:
// new rollup.config.js
export default {
input: 'src/main.js',
output: {
file: 'public/bundle.js',
format: 'iife',
name: 'App',
sourcemap: true
}
};A config with multiple outputs (say, a CommonJS main and a ESM module output) might look like this:
import pkg from './package.json';
export default {
input: 'src/index.js',
output: [
{ file: pkg.main, format: 'umd', name: 'MyLibrary' },
{ file: pkg.module, format: 'es' }
],
// other output options specified here will be shared by
// all outputs, unless overridden
sourcemap: true
};The same changes apply if you're using the API directly:
rollup.rollup({
input: 'src/main.js'
}).then(bundle => {
return bundle.write({
file: 'public/bundle.js',
format: 'iife',
name: 'App',
sourcemap: true
});
});The --output and --format can now also be specified as --output.file and --output.format respectively. The shorthand -o and -f options are unchanged.



@Rich-Harris it seems it's possible to pass
nameasoptions.nameandoptions.output.name- which one is preferred, is 1 of them going to be deprecated? Also it seems helpful migration console.log suggests the former, but docs suggest the latter - should be unified in some way I think. Might send a PR for this, aint sure which one is 'more correct' though