1.0.1 • Published 10 years ago

gulp-escomplex v1.0.1

Weekly downloads
11
License
MIT
Repository
github
Last release
10 years ago

Code Complexity Analysis for Gulp

This module does static analysis of source files and prepares them for a reporter.

See also: gulp-escomplex-reporter-html and gulp-escomplex-reporter-json

It uses escomplex to do the heavy lifting.

Installing

$ npm install gulp-escomplex

Usage

gulp.task('complexity', function () {
  return gulp.src([
    'index.js',
    'gulpfile.js'
  ])
  .pipe(complexity({
    packageName: 'gulp-escomplex',
    packageVersion: '1.0.1beta4'
  }));
});