mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
28398280f7
swd_bundler: - Handle reexports spack: - Do not transform files from node_modules
13 lines
221 B
JavaScript
13 lines
221 B
JavaScript
const d = 'e';
|
|
console.log('e');
|
|
const d1 = d;
|
|
console.log('d');
|
|
const b = d1;
|
|
console.log('c');
|
|
const __default = b;
|
|
console.log('b');
|
|
const b1 = __default;
|
|
console.log('a.js');
|
|
export { b1 as b };
|
|
console.log('entry');
|