Joined September 2018
·

justauser

Posted to Simple Gulp Copy file task over 1 year ago

You can also use globs to match directories and files:


gulp.task('vendor', function () {
return gulp
.src([
'./nodemodules/bootstrap/dist/',
'./nodemodules/intl/dist/
'
], { base: 'nodemodules' })
.pipe(gulp.dest('./vendor/'));
});
Achievements
1 Karma
0 Total ProTip Views