mirror of https://github.com/lukechilds/rollup.git
Bogdan Chadkin
9 years ago
committed by
GitHub
10 changed files with 20 additions and 1 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'resolves more pathological cyclical dependencies gracefully' |
|||
}; |
@ -0,0 +1,3 @@ |
|||
import * as x from "./x.a.js"; |
|||
x.b(); |
|||
x.c(); |
@ -0,0 +1,3 @@ |
|||
import * as x from "./x.b.js"; |
|||
|
|||
export function b() {} |
@ -0,0 +1,3 @@ |
|||
import * as x from "./x.c.js"; |
|||
|
|||
export function c() {} |
@ -0,0 +1 @@ |
|||
import './a.js'; |
@ -0,0 +1,2 @@ |
|||
export * from "./b.js"; |
|||
export * from "./c.js"; |
@ -0,0 +1,2 @@ |
|||
export * from "./a.js"; |
|||
export * from "./c.js"; |
@ -0,0 +1,2 @@ |
|||
export * from "./a.js"; |
|||
export * from "./b.js"; |
Loading…
Reference in new issue