mirror of https://github.com/lukechilds/rollup.git
Rich Harris
9 years ago
4 changed files with 16 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'allows a namespace to be passed to a function' |
|||
}; |
@ -0,0 +1 @@ |
|||
// this space left intentionally blank
|
@ -0,0 +1,7 @@ |
|||
import * as bar from './bar'; |
|||
|
|||
export default function foo () {} |
|||
|
|||
foo.x = function () { |
|||
doSomethingWith( bar ); |
|||
}; |
@ -0,0 +1,5 @@ |
|||
import foo from './foo'; |
|||
|
|||
export default function () { |
|||
foo(); |
|||
} |
Loading…
Reference in new issue