0.1.2 • Published 4 years ago

gulp-circular-dependency v0.1.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

gulp-circular-dependency

build status

中文

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