mirror of https://github.com/lukechilds/rollup.git
Arpad Borsos
10 years ago
5 changed files with 10 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'export from works with multiple renamed default exports' |
|||
}; |
@ -0,0 +1 @@ |
|||
export default 'a'; |
@ -0,0 +1 @@ |
|||
export default 'b'; |
@ -0,0 +1,2 @@ |
|||
export { default as a } from './a'; |
|||
export { default as b } from './b'; |
@ -0,0 +1,3 @@ |
|||
import { a, b } from './foo'; |
|||
assert.equal( a, 'a' ); |
|||
assert.equal( b, 'b' ); |
Loading…
Reference in new issue