mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
514 B
10 lines
514 B
var assert = require( 'assert' );
|
|
|
|
module.exports = {
|
|
description: 'warns if default and named exports are used in auto mode',
|
|
warnings: function ( warnings ) {
|
|
assert.deepEqual( warnings, [
|
|
'Using named and default exports together. Consumers of your bundle will have to use bundle[\'default\'] to access the default export, which may not be what you want. Use `exports: \'named\'` to disable this warning. See https://github.com/rollup/rollup/wiki/JavaScript-API#exports for more information'
|
|
]);
|
|
}
|
|
};
|
|
|