vsc-material-theme/gulpfile.babel.js

9 lines
175 B
JavaScript
Raw Normal View History

2017-05-10 09:37:48 +02:00
import Gulp from 'gulp';
import GulpStats from 'gulp-stats';
2017-02-04 11:42:25 +01:00
import tasks from './.gulp';
// Use gulp-stats
2017-05-10 09:37:48 +02:00
GulpStats(Gulp);
2017-02-04 11:42:25 +01:00
// set default task
2017-05-10 09:37:48 +02:00
Gulp.task('default', tasks);