Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
441 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | /*
|
---|
| 2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
---|
| 3 | Author Maksim Nazarjev @acupofspirt
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | "use strict";
|
---|
| 7 |
|
---|
| 8 | const WebpackError = require("./WebpackError");
|
---|
| 9 |
|
---|
| 10 | module.exports = class ConcurrentCompilationError extends WebpackError {
|
---|
| 11 | constructor() {
|
---|
| 12 | super();
|
---|
| 13 |
|
---|
| 14 | this.name = "ConcurrentCompilationError";
|
---|
| 15 | this.message =
|
---|
| 16 | "You ran Webpack twice. Each instance only supports a single concurrent compilation at a time.";
|
---|
| 17 | }
|
---|
| 18 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.