1 min readSep 6, 2016
Nice thx! It’s also good to remember to not import whole library when it’s not needed. Webpack 1X doesn’t support native ES modules, so sometimes better to write
import Something from 'myLibrary/lib/something'
than
import { Something } from 'myLibrary'
to avoid adding whole library into bundle.