mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-18 20:21:07 +00:00
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
import gulp from 'gulp';
|
|
import del from 'del';
|
|
import config from '../config';
|
|
|
|
gulp.task('clean', () => {
|
|
return del([config.dest.path]);
|
|
});
|