gulp-fcount

0.3.0 • Public • Published

gulp-fcount Build Status

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-fcount

Usage

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

Package Sidebar

Install

npm i gulp-fcount

Weekly Downloads

1

Version

0.3.0

License

MIT

Last publish

Collaborators

  • tpflueger