Skip to content

Display the size diff of your project files before and after running gulp tasks

License

Notifications You must be signed in to change notification settings

SkeLLLa/gulp-sizediff

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-sizediff

npm version Dependency Status

Display the total file size difference between before and after runnning your gulp tasks

It's not the plugin with absolutely same functionality as gulp-size. It's build on it's source, but has different purpose.

Install

$ npm install --save-dev gulp-sizediff

Usage

var gulp = require('gulp');
var bytediff = require('gulp-sizediff');
var csso = require('gulp-csso');

gulp.task('default', function() {
    gulp.src('main.css')
        .pipe(sizediff.start())
        .pipe(csso())
        .pipe(sizediff.stop())
        .pipe(gulp.dest('./out'));
});

sizediff.start() or sizediff()

Creates a new property on the file object that saves its current size.

sizediff.stop(options)

Counts and outputs the difference between saved size and the current filesize.

options

showFiles

Type: boolean
Default: false

Displays the size diff of every file instead of just the total size diff.

title

Type: string
Default: ''

Give it a title so it's possible to distinguish the output of multiple instances logging at once.

formatFn

Type: function
Default: ''

Customise the output of this by using the format function. An example:

	var sizeDiffFormat = function (data) {
		return ': bytes saved: ' + data.diff + ' (' + Math.round(data.diffPercent * 100)  + '%); compression ratio: ' + data.compressionRatio.toFixed(2);
	};
    // ...
    .pipe($.sizediff.stop({title:'html', formatFn: sizeDiffFormat}))
    .pipe(gulp.dest('./out'));

The function gets passed an object with the following properties:

  • startSize
  • endSize
  • diff (startSize - endSize)
  • diffPercent (endSize / startSize)
  • compressionRatio (diff / startSize)

License

MIT © Alexander Kureniov

Thanks:

Sindre Sorhus for gulp-size plugin Ben Briggs for gulp-bytediff plugin

The ideas from this two good plugins were taken and merged in this one. Thanks.

About

Display the size diff of your project files before and after running gulp tasks

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%