fix afterPlugins variable

This commit is contained in:
Sebastian McKenzie 2015-04-03 00:33:54 +11:00
parent e164123ce9
commit ab55ec4ea2

View File

@ -205,7 +205,7 @@ export default class File {
for (var i = 0; i < file.opts.plugins; i++) {
this.addPlugin(file.opts.plugins[i]);
}
stack = beforePlugins.concat(stack, afterPlugin);
stack = beforePlugins.concat(stack, afterPlugins);
// register
this.transformerStack = stack.concat(secondaryStack);