@json-schema-tools/semantic-release-transpiler
Version:
Semantic release plugin to generate typings using the transpiler
14 lines (13 loc) • 430 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
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;
}
}
exports.default = SemanticReleaseError;
;