v2.0.0
Potential breaking change: functions are now converted into a function expression and exported variable by the same name. Example:
export default function foo() {
return null;
}
Becomes:
var foo = function foo() {
return null;
};
export { foo as default };
And for named exports:
export function foo() {
return null;
}
Becomes:
var foo = function foo() {
return null;
};
export { foo };