Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Last active April 6, 2019 09:14
Show Gist options
  • Save ilearnjavascript/572c948c3dc13c4b521da5c9f87860b7 to your computer and use it in GitHub Desktop.
Save ilearnjavascript/572c948c3dc13c4b521da5c9f87860b7 to your computer and use it in GitHub Desktop.
gulp - gulpfile - 7.js
// transfer files dev
gulp.task('dev:transfer-css', function() {
return gulp.src('temp/style.css')
.pipe(gulp.dest('build/dev/temp'))
});
gulp.task('dev:transfer-js', function() {
return gulp.src('temp/main.js')
.pipe(gulp.dest('build/dev/temp'))
});
gulp.task('dev:transfer', gulp.parallel(
'dev:transfer-css',
'dev:transfer-js'
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment