mirror of https://github.com/lukechilds/rollup.git
Rich Harris
10 years ago
4 changed files with 26 additions and 2 deletions
@ -0,0 +1,7 @@ |
|||
module.exports = { |
|||
description: 'exports from an internal module', |
|||
exports: function ( exports, assert ) { |
|||
assert.equal( exports.foo, 42 ); |
|||
}, |
|||
solo: true |
|||
}; |
@ -0,0 +1 @@ |
|||
export var foo = 42; |
@ -0,0 +1 @@ |
|||
export { foo } from './foo'; |
Loading…
Reference in new issue