Results 3 issues of Hua Lu

Bellowing is my original code sample: ``` const ProxyInboxModel = proxyquire('../model.js', { 'messages': { ... } }).default ``` It didn't work as 'messages' is not resolved by module-resolver, after reading...

Bellowing doesn't work: ``` import { className } from './xxx.modules.css'; ``` However this works: ``` import styles from './xxx.modules.css'; const {className} = styles; ```

I didn't remember changes related to this, however the url-loader fails suddenly with happypack. Following is my current webpack config: ``` plugins: [ new HappyPack({ id: 'font', threads: 4, loaders:...

help wanted