mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
10 years ago
5 changed files with 15 additions and 4 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'correctly exports x as y inside a bundle' |
|||
}; |
@ -0,0 +1,3 @@ |
|||
var x = 42; |
|||
|
|||
export { x as y }; |
@ -0,0 +1,3 @@ |
|||
import * as foo from './foo'; |
|||
|
|||
assert.equal( foo.y, 42 ); |
Loading…
Reference in new issue