webpack-build icon indicating copy to clipboard operation
webpack-build copied to clipboard

Wraps webpack and plays well with build systems

Results 5 webpack-build issues
Sort by recently updated
recently updated
newest added

How does the persistent caching of this module work? for the case of: "Each file dependency's timestamp is checked against the cached output's start time" Does this mean that once...

In one particular project, each change outputs a couple megabytes of source files that have quickly accumulated and consumed gigs of data. As the persistent cache tracks the files that...

From memory, the compiler wrapper gets returned by the `build` function. So something like ``` js var wrapper = build({ // ... }, func...); wrapper.onDone(function(data) { console.log( // file paths,...

1) Currently, it seems as if the data.stats object passed to the `build` callback contains outdated information between invocations of the script running `webpack-build`. data.stats.time reports the original build time...

1) Is there a reason why the `stats` field of the `data` object only contains a subset of the original `stats` object provided by webpack? It would be nice if...