@pnpm/core
Version:
Fast, disk space efficient installation engine
15 lines • 603 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CatalogVersionMismatchError = void 0;
const error_1 = require("@pnpm/error");
class CatalogVersionMismatchError extends error_1.PnpmError {
catalogDep;
wantedDep;
constructor(opts) {
super('CATALOG_VERSION_MISMATCH', 'Wanted dependency outside the version range defined in catalog');
this.catalogDep = opts.catalogDep;
this.wantedDep = opts.wantedDep;
}
}
exports.CatalogVersionMismatchError = CatalogVersionMismatchError;
//# sourceMappingURL=CatalogVersionMismatchError.js.map