1.0.0 • Published 9 years ago

gulp-memory-stats v1.0.0

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

gulp-memory-stats

Gulp plugin for enabling memory stats using @paulirish's project.

Example

// in your gulpfile...

var memoryStats = require('gulp-memory-stats');

gulp.task('html', function() {
  gulp.src(src.html)
    .pipe(memoryStats({ position: 'top-right' })) // can be 'bottom-right' (default), 'bottom-left', 'top-right', 'top-left'
    .pipe(gulp.dest(dest.html));
});