0.3.0 • Published 8 years ago

gulp-fcount v0.3.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.0.1

8 years ago