Package Exports
- gulp-circular-dependency
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 (gulp-circular-dependency) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-circular-dependency
Detect modules with circular dependencies when processing javascript
Install
npm install --save-dev gulp-circular-dependency
Usage
const gulp = require('gulp');
const circularDependency = require('gulp-circular-dependency');
gulp.task('default', () =>
gulp.src('src/**/*.js')
.pipe(circularDependency())
.pipe(gulp.dest('dist'))
);
API
See the dependency-tree options.
License
MIT © dlhandsome