mirror of https://github.com/lukechilds/rollup.git
12 lines
349 B
12 lines
349 B
var assert = require( 'assert' );
|
|
|
|
module.exports = {
|
|
description: 'ignores conflict between import declaration and export from declaration',
|
|
exports: function ( exports ) {
|
|
assert.equal( exports.foo, 'a-bar' );
|
|
assert.equal( exports.bar, 'a-foo' );
|
|
assert.equal( exports.baz, 'a-baz' );
|
|
}
|
|
};
|
|
|
|
// https://github.com/rollup/rollup/issues/16
|
|
|