mirror of https://github.com/lukechilds/rollup.git
Oskar Segersvärd
9 years ago
4 changed files with 17 additions and 0 deletions
@ -0,0 +1,5 @@ |
|||
module.exports = { |
|||
description: 'Rollup should not get confused and allow "default" as an identifier name' |
|||
}; |
|||
|
|||
// https://github.com/rollup/rollup/issues/215
|
@ -0,0 +1,3 @@ |
|||
export default function Foo () { |
|||
|
|||
} |
@ -0,0 +1,6 @@ |
|||
// export
|
|||
export {default as Foo} from './foo'; |
|||
|
|||
export default function () { |
|||
// whatever
|
|||
} |
Loading…
Reference in new issue