gulp-file-copy
v0.0.1
Published
copy file
Readme
gulp-file-copy
Install
npm install gulp-file-copyConfigure
var gulp = require('gulp'),
gulpCopy = require('gulp-file-copy');
gulp.task('copy', function() {
var start = './src'
gulp.src(start)
.pipe(gulpCopy('./build', {
start: start
}))
});Run
gulp copy