From d0a5faefe1eb2c558ff8292f8e09e71e2454aad2 Mon Sep 17 00:00:00 2001 From: James Ide Date: Tue, 9 Jun 2015 00:06:28 -0700 Subject: [PATCH] Error.stackTrackLimit -> stackTraceLimit Fixed typo in bin/webpack.js. Should be straightforward. --- bin/webpack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/webpack.js b/bin/webpack.js index 34df7e89e..02719b647 100644 --- a/bin/webpack.js +++ b/bin/webpack.js @@ -152,7 +152,7 @@ ifArg("hide-modules", function(bool) { var webpack = require("../lib/webpack.js"); -Error.stackTrackLimit = 30; +Error.stackTraceLimit = 30; var lastHash = null; var compiler = webpack(options); function compilerCallback(err, stats) {