vue-material/gulpfile.babel.js/tasks/copy.js
2016-06-17 20:32:39 -03:00

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));
});