Last active
January 3, 2016 22:19
-
-
Save dperrera/8527427 to your computer and use it in GitHub Desktop.
My gulpfile.js
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
// ================================================== | |
// Gulp Variables | |
// ================================================== | |
var gulp = require('gulp'), | |
gutil = require('gulp-util'); | |
// Compass | |
var compass = require('gulp-compass'); | |
// LiveReload | |
var livereload = require('gulp-livereload'), | |
lr = require('tiny-lr'), | |
server = lr(); | |
// JSHint | |
var jshint = require('gulp-jshint'); | |
// Concat & Minify JS | |
var concat = require('gulp-concat'), | |
uglify = require('gulp-uglify'), | |
rename = require('gulp-rename'); | |
// Imagemin | |
var imagemin = require('gulp-imagemin'); | |
// ================================================== | |
// Set Paths | |
// ================================================== | |
var sass_path = '_/sass/'; | |
var css_path = '_/css/'; | |
var js_path = '_/js/'; | |
var img_path = '_/img/'; | |
var font_path = '_/font/'; | |
var build_path = '_/build/'; | |
// ================================================== | |
// Tasks | |
// ================================================== | |
// Lint JS | |
gulp.task('lint', function() { | |
gulp.src(js_path + '*.js'); | |
}); | |
// Compass for Development | |
gulp.task('compass-dev', function() { | |
gulp.src(sass_path + 'all.sass') | |
.pipe(compass({ | |
style: 'expanded', | |
comments: 'true', | |
relative: 'true', | |
css: css_path, | |
sass: sass_path, | |
javascript: js_path, | |
image: img_path, | |
font: font_path | |
})) | |
.pipe(gulp.dest(build_path)) | |
.pipe(livereload(server)); | |
}); | |
// Compass for Production | |
gulp.task('compass-prod', function() { | |
gulp.src(sass_path + 'all.sass') | |
.pipe(compass({ | |
style: 'compressed', | |
comments: 'false', | |
relative: 'true', | |
css: css_path, | |
sass: sass_path, | |
javascript: js_path, | |
image: img_path, | |
font: font_path | |
})) | |
.pipe(gulp.dest(build_path)); | |
}); | |
// Concatenate & Minify JS | |
gulp.task('scripts', function() { | |
gulp.src(js_path + '*.js') | |
.pipe(jshint()) | |
.pipe(jshint.reporter('default')) | |
.pipe(concat('all.js')) | |
.pipe(gulp.dest(build_path)) | |
.pipe(rename('all.min.js')) | |
.pipe(uglify()) | |
.pipe(gulp.dest(build_path)) | |
.pipe(livereload(server)); | |
}); | |
// Imagemin | |
gulp.task('imgmin', function() { | |
gulp.src(img_path + '**') | |
.pipe(imagemin()) | |
.pipe(gulp.dest(build_path + 'img')); | |
}); | |
// Reload | |
gulp.task('reload', function() { | |
gulp.src(['*.php', '*/*.php', '*.html', '*/*.html']) | |
.pipe(livereload(server)); | |
}); | |
// Preflight. Make ready for production. | |
gulp.task('preflight', function() { | |
gulp.run('imgmin', 'scripts', 'compass-prod'); | |
}); | |
// Default Task | |
gulp.task('default', function () { | |
// Fire up the LiveReload Server | |
server.listen(35729, function (err) { | |
if (err) return console.log(err); | |
// Watch all the files in the sass directory | |
gulp.watch(sass_path + '**', function() { | |
gulp.run('compass-dev'); | |
}); | |
// Watch all the files in the js directory | |
gulp.watch(js_path + '**', function() { | |
gulp.run('scripts'); | |
}); | |
// Watch all the php and html files | |
gulp.watch(['*.php', '*/*.php', '*.html', '*/*.html'], function() { | |
gulp.run('reload'); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very nice!