mirror of https://github.com/lukechilds/rollup.git
Rich Harris
10 years ago
6 changed files with 16 additions and 1 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'top level function calls are preserved' |
|||
}; |
@ -0,0 +1,5 @@ |
|||
import obj from './obj'; |
|||
|
|||
obj.value = 'augmented'; |
|||
|
|||
export default obj; |
@ -0,0 +1,3 @@ |
|||
import lib from './lib'; |
|||
|
|||
assert.strictEqual(lib.value, 'augmented'); |
@ -0,0 +1 @@ |
|||
export default { value: 'original' }; |
Loading…
Reference in new issue