mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
9 years ago
7 changed files with 26 additions and 15 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'follows symlinks' |
|||
}; |
@ -0,0 +1 @@ |
|||
symlinked/bar.js |
@ -0,0 +1,2 @@ |
|||
import foo from './foo.js'; |
|||
assert.equal( foo, 'BAZ' ); |
@ -0,0 +1,2 @@ |
|||
import baz from './baz.js'; |
|||
export default baz(); |
@ -0,0 +1,3 @@ |
|||
export default function () { |
|||
return 'BAZ'; |
|||
} |
Loading…
Reference in new issue