UNPKG

veendor

Version:

a tool for stroing your npm dependencies in arbitraty storage

21 lines (20 loc) 616 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class VeendorError extends Error { constructor(message = ' ') { super(message); } } exports.VeendorError = VeendorError; class BundleAlreadyExistsError extends VeendorError { } exports.BundleAlreadyExistsError = BundleAlreadyExistsError; class BundleNotFoundError extends VeendorError { } exports.BundleNotFoundError = BundleNotFoundError; class InvalidOptionsError extends VeendorError { } exports.InvalidOptionsError = InvalidOptionsError; class RePullNeeded extends VeendorError { } exports.RePullNeeded = RePullNeeded;