2017-11-21 17:41:01 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const WebpackError = require("./WebpackError");
|
|
|
|
|
|
|
|
module.exports = class NoModeWarning extends WebpackError {
|
|
|
|
constructor(modules) {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.name = "NoModeWarning";
|
2018-02-25 09:00:20 +08:00
|
|
|
this.message =
|
|
|
|
"configuration\n" +
|
2017-11-21 17:41:01 +08:00
|
|
|
"The 'mode' option has not been set. " +
|
2018-01-15 04:56:57 +08:00
|
|
|
"Set 'mode' option to 'development' or 'production' to enable defaults for this environment. ";
|
2017-11-21 17:41:01 +08:00
|
|
|
|
|
|
|
Error.captureStackTrace(this, this.constructor);
|
|
|
|
}
|
|
|
|
};
|