Package Exports
- missing-dependency-error
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (missing-dependency-error) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
missing-dependency-error
A simple extension of the JavaScript Error object (read on MDN) to be thrown when a dependency isn't provided.
Installation
npm install missing-dependency-errorUsage
import MissingDependencyError from "missing-dependency-error";
let err = new MissingDependencyError("SomeDependency");The above example will create a MissingDependencyError object with the message:
Missing dependency: SomeDependency
License
This is licensed under the MIT license. See the LICENSE file for more information.