bundle-webpack2-loader
v0.1.0-alpha.1
Published
bundle loader module for webpack2
Readme
bundle loader for webpack2
Usage
// The chunk is requested, when you require the bundle
import waitForChunk from "bundle!./file.js";
// To wait until the chunk is available (and get the exports)
// you need to async wait for it.
waitForChunk
.then(function (file) {
})
.catch(function (err) {
})
;License
MIT (http://www.opensource.org/licenses/mit-license.php)
