We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 805f4b0 commit 0a68e29Copy full SHA for 0a68e29
lib/ErrorHelpers.js
@@ -18,7 +18,7 @@ exports.cutOffByFlag = (stack, flag) => {
18
exports.cutOffLoaderExecution = stack =>
19
exports.cutOffByFlag(stack, loaderFlag);
20
21
-exports.cutOffWebpackOptinos = stack =>
+exports.cutOffWebpackOptions = stack =>
22
exports.cutOffByFlag(stack, webpackOptionsFlag);
23
24
exports.cutOffMultilineMessage = (stack, message) => {
@@ -51,7 +51,7 @@ exports.cleanUp = (stack, message) => {
51
};
52
53
exports.cleanUpWebpackOptions = (stack, message) => {
54
- stack = exports.cutOffWebpackOptinos(stack);
+ stack = exports.cutOffWebpackOptions(stack);
55
stack = exports.cutOffMultilineMessage(stack, message);
56
return stack;
57
0 commit comments