This repository was archived by the owner on Jun 25, 2020. It is now read-only.

Description
When using loader's syntax I get undefined for named exports:
// Comey.js
const Dismissed = () => <div> :| </div>
const Career = () => <div> ;| </div>
export {
Dismissed as default,
Career
};
// main.js
import Dismissed, { Career } from 'bundle-loader?lazy!./Comey';
console.log(Dismissed); // function (cb) { blah }
console.log(Career); // `undefined`
// - "webpack": "2.4.1",
// - "bundle-loader": "0.5.5",