mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-17 11:41:06 +00:00
10 lines
242 B
JavaScript
10 lines
242 B
JavaScript
import gulp from 'gulp';
|
|
import changed from 'gulp-changed';
|
|
import config from '../config';
|
|
|
|
gulp.task('copy', () => {
|
|
return gulp
|
|
.src(config.src.files)
|
|
.pipe(changed(config.dest.path))
|
|
.pipe(gulp.dest(config.dest.path));
|
|
});
|