mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 09:03:37 +03:00
c127cb2b48
swc_bundler: - Handle aliased imports of reexports correctly. (#1138) - Fix import deglobber. (#1139)
7 lines
103 B
JavaScript
7 lines
103 B
JavaScript
import * as circular1 from "./entry";
|
|
|
|
export function f2() {
|
|
console.log("f2");
|
|
}
|
|
|
|
circular1.f1(); |