vue-material/gulpfile.babel.js/tasks/copy.js
2016-07-11 11:33:54 -03:00

8 lines
169 B
JavaScript

import gulp from 'gulp';
import config from '../config';
gulp.task('copy', () => {
return gulp
.src(config.src.files)
.pipe(gulp.dest(config.dest.path));
});