bpms_site/.svn/pristine/2d/2d5c184ca750b9f03ad964ab79e9b250844c0381.svn-base
2025-11-02 16:38:49 +03:30

11 lines
404 B
Plaintext

// This class creates a simplified webpack error that formats nicely based on
// webpack's build in serializer.
// https://github.com/webpack/webpack/blob/c9d4ff7b054fc581c96ce0e53432d44f9dd8ca72/lib/Stats.js#L294-L356
export class SimpleWebpackError extends Error {
constructor(file, message){
super(message);
this.file = file;
}
}
//# sourceMappingURL=simpleWebpackError.js.map