-
-
Save ilearnjavascript/572c948c3dc13c4b521da5c9f87860b7 to your computer and use it in GitHub Desktop.
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