Closed Rich-Harris closed 9 years ago
If you have a situation like this...
// main.js import x from "moment"; import a from './a'; // a.js var x = 'wut'; export default x;
...the x name isn't deconflicted between the reference that's internal to a.js, and the external module. Fix inbound
x
a.js
Fixed in 0.6.15
If you have a situation like this...
...the
x
name isn't deconflicted between the reference that's internal toa.js
, and the external module. Fix inbound