Skip to content

Commit 8079331

Browse files
committed
fixed child compiler
1 parent 9bc3759 commit 8079331

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/Compiler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ Compiler.prototype.emitAssets = function(compilation, callback) {
205205
Compiler.prototype.createChildCompiler = function(compilation, compilerName, outputOptions) {
206206
var childCompiler = new Compiler();
207207
for(var name in this._plugins) {
208-
if(["make", "compile", "emit", "after-emit", "done"].indexOf(name) < 0)
208+
if(["make", "compile", "emit", "after-emit", "invalid", "done"].indexOf(name) < 0)
209209
childCompiler._plugins[name] = this._plugins[name].slice();
210210
}
211211
childCompiler.name = compilerName;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack",
3-
"version": "0.9.0-beta5",
3+
"version": "0.9.0-beta6",
44
"author": "Tobias Koppers @sokra",
55
"description": "Packs CommonJs/AMD Modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jade, coffee, css, less, ... and your custom stuff.",
66
"dependencies": {

0 commit comments

Comments
 (0)