@pnpm/core
Version:
Fast, disk space efficient installation engine
14 lines • 532 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BreakingChangeError = void 0;
const error_1 = require("@pnpm/error");
class BreakingChangeError extends error_1.PnpmError {
constructor(opts) {
super(opts.code, opts.message);
this.relatedIssue = opts.relatedIssue;
this.relatedPR = opts.relatedPR;
this.additionalInformation = opts.additionalInformation;
}
}
exports.BreakingChangeError = BreakingChangeError;
//# sourceMappingURL=BreakingChangeError.js.map