veendor
Version:
a tool for stroing your npm dependencies in arbitraty storage
14 lines (11 loc) • 306 B
JavaScript
'use strict';
class BundleAlreadyExistsError extends Error {}
class BundleNotFoundError extends Error {}
class InvalidOptionsError extends Error {}
class RePullNeeded extends Error {}
module.exports = {
BundleAlreadyExistsError,
BundleNotFoundError,
InvalidOptionsError,
RePullNeeded,
};