Created
June 9, 2016 19:04
-
-
Save moxdev/d05fce0cf8b3e379a3e30a2f493ba203 to your computer and use it in GitHub Desktop.
Basic Gulp-Sass-WordPress gulp file
This file contains hidden or 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
/** | |
* Configuration. | |
* | |
* Project Configuration for gulp tasks. | |
* | |
* Edit the variables as per your project requirements. | |
*/ | |
// Project related. | |
var project = 'Sass WPGulpTheme'; // Project Name. | |
var projectURL = 'http://www.example.com/'; // Project URL. Could be something like localhost:8888. | |
var productURL = './'; // Theme/Plugin URL. Leave it like it is, since our gulpfile.js lives in the root folder. | |
// Sass Source and Destination ===================== | |
var styleSRC = './assets/css/style.scss'; // Path to main .scss file | |
var styleDestination = './'; // Path to place the compiled CSS file | |
// Defualt set to root folder | |
// Image Optimization ===================== | |
var imagesSRC = '.assets/imgs-for-optimizing/*.{png,jpg,gif,svg}'; // Source folder of images which should be optimized. | |
var imagesDestination = './imgs/'; // Destination folder of optimized images. Must be different from the imagesSRC folder. | |
// Watch Files =========================== | |
var styleWatchFiles = './assets/css/**/*.scss'; // Path to all *.scss files inside css folder and inside them | |
var projectPHPWatchFiles = './**/*.php'; // Path to all PHP files. | |
/**============================================== | |
* | |
* Load Plugins. | |
* | |
* Load gulp plugins and assign them semantic names. | |
** ============================================== */ | |
var gulp = require('gulp'); // Gulp of-course | |
// CSS related plugins. ================================================ | |
var sass = require('gulp-sass'); // Gulp pluign for Sass compilation. | |
var minifycss = require('gulp-uglifycss'); // Minifies CSS files. | |
var autoprefixer = require('gulp-autoprefixer'); // Autoprefixing magic. | |
var mmq = require('gulp-merge-media-queries'); // Combine matching media queries into one media query definition. | |
// Image realted plugins. ================================================ | |
var imagemin = require('gulp-imagemin'); // Minify PNG, JPEG, GIF and SVG images with imagemin. | |
// Utility related plugins. ================================================ | |
var rename = require('gulp-rename'); // Renames files E.g. style.css -> style.min.css | |
var lineec = require('gulp-line-ending-corrector'); // Consistent Line Endings for non UNIX systems. Gulp Plugin for Line Ending Corrector (A utility that makes sure your files have consistent line endings) | |
var filter = require('gulp-filter'); // Enables you to work on a subset of the original files by filtering them using globbing. | |
var sourcemaps = require('gulp-sourcemaps'); // Maps code in a compressed file (E.g. style.css) back to it’s original position in a source file (E.g. structure.scss, which was later combined with other css files to generate style.css) | |
var notify = require('gulp-notify'); // Sends message notification to you | |
var browserSync = require('browser-sync').create(); // Reloads browser and injects CSS. Time-saving synchronised browser testing. | |
var reload = browserSync.reload; // For manual browser reload. | |
/**============================================== | |
* Browsers you care about for autoprefixing. | |
* Browserlist https ://github.com/ai/browserslist | |
** ============================================== */ | |
const AUTOPREFIXER_BROWSERS = [ | |
'last 2 version', | |
'> 1%', | |
'ie >= 9', | |
'ie_mob >= 10', | |
'ff >= 30', | |
'chrome >= 34', | |
'safari >= 7', | |
'opera >= 23', | |
'ios >= 7', | |
'android >= 4', | |
'bb >= 10' | |
]; | |
/** | |
* Task: `browser-sync`. | |
* | |
* Live Reloads, CSS injections, Localhost tunneling. | |
* | |
* This task does the following: | |
* 1. Sets the project URL | |
* 2. Sets inject CSS | |
* 3. You may define a custom port | |
* 4. You may want to stop the browser from openning automatically | |
*/ | |
gulp.task( 'browser-sync', function() { | |
browserSync.init( { | |
// For more options | |
// @link http://www.browsersync.io/docs/options/ | |
// Project URL. | |
proxy: { | |
target: 'http://www.sass-loktek.dev/', | |
}, | |
// `true` Automatically open the browser with BrowserSync live server. | |
// `false` Stop the browser from automatically opening. | |
open: true, | |
// Inject CSS changes. | |
// Comment it to reload browser for every CSS change. | |
injectChanges: true, | |
// Open the site in Chrome & Firefox | |
browser: ["google chrome", "FirefoxDeveloperEdition"], | |
// Use a specific port (instead of the one auto-detected by Browsersync). | |
// port: 7000, | |
} ); | |
}); | |
/** | |
* Task: styles | |
* | |
* Compiles Sass, Autoprefixes it and Minifies CSS. | |
* | |
* This task does the following: | |
* 1. Gets the source scss file | |
* 2. Compiles Sass to CSS | |
* 3. Writes Sourcemaps for it | |
* 4. Autoprefixes it and generates style.css | |
* 5. Renames the CSS file with suffix .min.css | |
* 6. Minifies the CSS file and generates style.min.css | |
*/ | |
gulp.task('styles', function () { | |
gulp.src( styleSRC ) | |
.pipe( sourcemaps.init() ) | |
.pipe( sass( { | |
errLogToConsole: true, | |
outputStyle: 'expanded', | |
// outputStyle: 'compact', | |
//outputStyle: 'compressed', | |
// outputStyle: 'nested', | |
precision: 10 | |
} ) ) | |
.on('error', console.error.bind(console)) | |
.pipe( sourcemaps.write( { includeContent: false } ) ) | |
.pipe( sourcemaps.init( { loadMaps: true } ) ) | |
.pipe( autoprefixer( AUTOPREFIXER_BROWSERS ) ) | |
.pipe( sourcemaps.write ( styleDestination ) ) | |
.pipe( lineec() ) // Consistent Line Endings for non UNIX systems. | |
.pipe( gulp.dest( styleDestination ) ) | |
.pipe( filter( '**/*.css' ) ) // Filtering stream to only css files | |
.pipe( mmq( { log: true } ) ) // Merge Media Queries only for .min.css version. | |
.pipe( browserSync.stream() ) // Reloads style.css if that is enqueued. | |
.pipe( rename( { suffix: '.min' } ) ) | |
.pipe( minifycss( { | |
maxLineLen: 10 | |
})) | |
.pipe( lineec() ) // Consistent Line Endings for non UNIX systems. | |
.pipe( gulp.dest( styleDestination ) ) | |
.pipe( filter( '**/*.css' ) ) // Filtering stream to only css files | |
.pipe( browserSync.stream() )// Reloads style.min.css if that is enqueued. | |
.pipe( notify( { message: 'TASK: "styles" Completed! 💯', onLast: true } ) ) | |
}); | |
/** | |
* Task: `images`. | |
* | |
* Minifies PNG, JPEG, GIF and SVG images. | |
* | |
* This task does the following: | |
* 1. Gets the source of images raw folder | |
* 2. Minifies PNG, JPEG, GIF and SVG images | |
* 3. Generates and saves the optimized images | |
* | |
* This task will run only once, if you want to run it | |
* again, do it with the command `gulp images`. | |
*/ | |
gulp.task( 'images', function() { | |
gulp.src( imagesSRC ) | |
.pipe( imagemin( { | |
progressive: true, | |
optimizationLevel: 4, // 0-7 low-high | |
interlaced: true, | |
svgoPlugins: [{removeViewBox: false}] | |
} ) ) | |
.pipe(gulp.dest( imagesDestination )) | |
.pipe( notify( { message: 'TASK: "images" Completed! 💯', onLast: true } ) ); | |
}); | |
/** | |
* Watch Tasks. | |
* | |
* Watches for file changes and runs specific tasks. | |
*/ | |
gulp.task( 'default', ['styles', 'images', 'browser-sync'], function () { | |
gulp.watch( projectPHPWatchFiles, reload ); // Reload on PHP file changes. | |
gulp.watch( styleWatchFiles, [ 'styles' ] ); // Reload on SCSS file changes. | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment