Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
paytek-africa.com
/
node_modules
/
webpack
/
lib
:
ConcurrentCompilationError.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/* 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."; } };