mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
3 changed files with 10 additions and 1 deletions
@ -0,0 +1,8 @@ |
|||
const assert = require( 'assert' ); |
|||
|
|||
module.exports = { |
|||
description: 'handles default exports with no space before declaration', |
|||
exports: exports => { |
|||
assert.deepEqual( exports, {} ); |
|||
} |
|||
}; |
@ -0,0 +1 @@ |
|||
export default{}; |
Loading…
Reference in new issue