Skip to content

Instantly share code, notes, and snippets.

@shakdaniel
Last active September 17, 2021 02:48
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shakdaniel/0cbdf4d63c40c544ecf1 to your computer and use it in GitHub Desktop.
Save shakdaniel/0cbdf4d63c40c544ecf1 to your computer and use it in GitHub Desktop.
Gulpfile for my workflow.
// npm install --save-dev gulp gulp-jade gulp-stylus gulp-autoprefixer gulp-minify-css gulp-jshint jshint-stylish gulp-uglify gulp-concat gulp-imagemin imagemin-pngcrush gulp-rename gulp-clean gulp-newer gulp-filesize gulp-size gulp-notify browser-sync
// GULP DEPENDENCIES & PLUGINS
var gulp = require('gulp'),
jade = require('gulp-jade'),
stylus = require('gulp-stylus'),
prefix = require('gulp-autoprefixer'),
mincss = require('gulp-minify-css'),
jshint = require('gulp-jshint'),
stylish = require('jshint-stylish'),
uglify = require('gulp-uglify'),
concat = require('gulp-concat'),
imagemin = require('gulp-imagemin'),
pngcrush = require('imagemin-pngcrush'),
rename = require('gulp-rename'),
clean = require('gulp-clean'),
newer = require('gulp-newer'),
filesize = require('gulp-filesize'),
totalsize = require('gulp-size'),
notify = require('gulp-notify'),
browserSync = require('browser-sync');
// PATHS TO FOLDERS
var html_src = 'dev/templates/*.jade',
html_dest = 'public/',
css_src = 'dev/styl/*.styl',
css_dest = 'public/css/',
js_src = 'dev/js/*.js',
js_dest = 'public/js/',
img_src = 'dev/images/*',
img_dest = 'public/images/';
// HTML
gulp.task('html', function() {
return gulp.src(html_src)
.pipe(newer(html_dest))
.pipe(jade())
.pipe(filesize())
.pipe(gulp.dest(html_dest));
});
// CSS
gulp.task('css', function() {
return gulp.src(css_src)
.pipe(newer(css_dest))
.pipe(stylus())
.pipe(prefix('last 5 version', '> 1%', 'ie 8', 'ie 7', {
cascade: true
}))
.pipe(mincss())
.pipe(rename({
suffix: '.min'
}))
.pipe(filesize())
.pipe(gulp.dest(css_dest));
});
// JS hint
gulp.task('jshint', function() {
return gulp.src(js_src)
.pipe(jshint())
.pipe(jshint.reporter(stylish));
});
// JS
gulp.task('js', function() {
return gulp.src('dev/js/main.js')
.pipe(newer(js_dest))
.pipe(jshint())
.pipe(jshint.reporter(stylish))
.pipe(concat('custom.min.js'))
.pipe(uglify())
.pipe(filesize())
.pipe(gulp.dest(js_dest));
});
// IMAGES
gulp.task('img', function() {
return gulp.src(img_src)
.pipe(newer(img_dest))
.pipe(imagemin({
optimizationLevel: 5,
progressive: true,
interlaced: true,
use: [pngcrush()]
}))
.pipe(filesize())
.pipe(gulp.dest(img_dest));
});
// FILE SIZES
gulp.task('size', function() {
return gulp.src('public/**/*')
.pipe(totalsize());
});
// WATCH
gulp.task('watch', function() {
gulp.watch('dev/templates/**/*', ['html']);
gulp.watch('dev/styl/**/*', ['css']);
gulp.watch('dev/js/**/*', ['js']);
gulp.watch('dev/images/**/*', ['img']);
gulp.watch('public/**/*', ['size']);
});
// BROWSER SYNC
gulp.task('sync', function() {
browserSync.init('public/**/*', {
server: {
baseDir: 'public/'
}
});
});
// DEFAULT
gulp.task('default', ['html', 'css', 'js', 'img', 'watch', 'sync']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment