first commit
This commit is contained in:
16
app_vue/node_modules/webpack/lib/HarmonyLinkingError.js
generated
vendored
Normal file
16
app_vue/node_modules/webpack/lib/HarmonyLinkingError.js
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
/*
|
||||
MIT License http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
const WebpackError = require("./WebpackError");
|
||||
|
||||
module.exports = class HarmonyLinkingError extends WebpackError {
|
||||
/** @param {string} message Error message */
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = "HarmonyLinkingError";
|
||||
this.hideStack = true;
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user