mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
8 years ago
5 changed files with 10 additions and 2 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'correctly renders children of ConditionalExpressions' |
|||
}; |
@ -0,0 +1,2 @@ |
|||
export const bar = 42; |
|||
export const baz = 43; |
@ -0,0 +1,3 @@ |
|||
import * as foo from './foo.js'; |
|||
|
|||
assert.equal( true ? foo.bar : foo.baz, 42 ); |
Loading…
Reference in new issue