mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-22 05:51:52 +00:00
12 lines
261 B
JavaScript
12 lines
261 B
JavaScript
import gulp from 'gulp';
|
|
import path from 'path';
|
|
import size from 'gulp-size';
|
|
import config from '../config';
|
|
|
|
gulp.task('report', () => {
|
|
return gulp
|
|
.src(path.normalize(config.dest.path + '/**/*'))
|
|
.pipe(size({
|
|
title: 'Size of'
|
|
}));
|
|
});
|