mirror of https://github.com/lukechilds/rollup.git
Mike Bostock
9 years ago
3 changed files with 21 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||||
|
var assert = require( 'assert' ); |
||||
|
|
||||
|
module.exports = { |
||||
|
description: 're-exports are kept up-to-date', |
||||
|
exports: function ( exports ) { |
||||
|
assert.equal( exports.count, 0 ); |
||||
|
exports.incr(); |
||||
|
assert.equal( exports.count, 1 ); |
||||
|
} |
||||
|
}; |
@ -0,0 +1,10 @@ |
|||||
|
export var count = 0; |
||||
|
|
||||
|
export function conflict () { |
||||
|
var foo = 0, |
||||
|
count = 42; |
||||
|
} |
||||
|
|
||||
|
export function incr () { |
||||
|
count += 1; |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
export {count, incr, conflict} from './count'; |
Loading…
Reference in new issue