gulp-fcount
v0.3.0
Published
Display line count per function within a file for javascript
Maintainers
Readme
gulp-fcount 
Display percent breakdown of project function line count
Logs out percentage of function sizes by line count.
Install
Install package with NPM and add it to your development dependencies:
$ npm install --save-dev gulp-fcountUsage
var fcount = require('gulp-fcount');
gulp.task('scripts', function () {
return gulp.src('./app/*.js')
.pipe(fcount())
.pipe(gulp.dest('./dist/'));
});API
fcount([options])
options
showFunctions
Type: boolean
Default: false
Displays every function with path, line start, and number of lines.
License
MIT © Tyler Pflueger
