Package Exports
- @commitlint/load
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 (@commitlint/load) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Load shared commitlint configuration
@commitlint/load
Getting started
npm install --save-dev @commitlint/load
Example
const load = require('@commitlint/load').default;
load({extends: ['./package']}).then((config) => console.log(config));
// => { extends: ['./package', './package-b'], rules: {} }
Consult docs/api for comprehensive documentation.