Installing dependencies.
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
module.exports = class SemanticReleaseError extends Error {
|
||||
constructor(message, code, details) {
|
||||
super(message);
|
||||
Error.captureStackTrace(this, this.constructor);
|
||||
this.name = 'SemanticReleaseError';
|
||||
this.code = code;
|
||||
this.details = details;
|
||||
this.semanticRelease = true;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user