Sha256: d3075c31ddd470cdffb1a426a04547137785525fff96631149fc71551c0b7b4a
Contents?: true
Size: 492 Bytes
Versions: 29
Compression:
Stored size: 492 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Maksim Nazarjev @acupofspirt */ "use strict"; const WebpackError = require("./WebpackError"); module.exports = class ConcurrentCompilationError extends WebpackError { constructor() { super(); this.name = "ConcurrentCompilationError"; this.message = "You ran Webpack twice. Each instance only supports a single concurrent compilation at a time."; Error.captureStackTrace(this, this.constructor); } };
Version data entries
29 entries across 28 versions & 10 rubygems