/gulp - gulpfile - 7.js Secret
Last active
April 6, 2019 09:14
gulp - gulpfile - 7.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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