@pnpm/core
Version:
Fast, disk space efficient installation engine
14 lines • 561 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnexpectedStoreError = void 0;
const error_1 = require("@pnpm/error");
class UnexpectedStoreError extends error_1.PnpmError {
constructor(opts) {
super('UNEXPECTED_STORE', 'Unexpected store location');
this.expectedStorePath = opts.expectedStorePath;
this.actualStorePath = opts.actualStorePath;
this.modulesDir = opts.modulesDir;
}
}
exports.UnexpectedStoreError = UnexpectedStoreError;
//# sourceMappingURL=UnexpectedStoreError.js.map
;