mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
10 years ago
3 changed files with 11 additions and 0 deletions
@ -0,0 +1,4 @@ |
|||
module.exports = { |
|||
description: 'includes object properties in definitions', |
|||
// solo: true
|
|||
}; |
@ -0,0 +1,2 @@ |
|||
import object from './object'; |
|||
assert.equal( object.answer, 42 ); |
@ -0,0 +1,5 @@ |
|||
var answer = 42; |
|||
|
|||
export default { |
|||
answer: answer |
|||
}; |
Loading…
Reference in new issue