mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
committed by
GitHub
5 changed files with 16 additions and 2 deletions
@ -0,0 +1,4 @@ |
|||
module.exports = { |
|||
solo: true, |
|||
description: 'deconflicts top-level classes' |
|||
}; |
@ -0,0 +1,2 @@ |
|||
var Foo = function Foo () {}; |
|||
export { Foo }; |
@ -0,0 +1,2 @@ |
|||
class Foo {}; |
|||
export { Foo }; |
@ -0,0 +1,4 @@ |
|||
import { Foo as A } from './a.js'; |
|||
import { Foo as B } from './b.js'; |
|||
|
|||
assert.notEqual( A, B ); |
Loading…
Reference in new issue