-
-
Save tommcfarlin/8f2d3146cba5c565ad1e5d51e09a221c to your computer and use it in GitHub Desktop.
[WordPress] A Few Gulp Packages for Starters
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
gulp.task('sass', function(){ | |
return gulp.src('assets/styles/scss/*.scss') | |
.pipe(sass()) | |
.pipe(gulp.dest('assets/styles/css')) | |
}); |
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
gulp.task('minify-js', function () { | |
return gulp.src('assets/scripts/dev/*.js') | |
.pipe(uglify()) | |
.pipe(gulp.dest('assets/scripts')); | |
}); |
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
gulp.task('image-optimization', function () { | |
return gulp.src('assets/images/*') | |
.pipe(imagemin()) | |
.pipe(gulp.dest('assets/images')) | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment