Last active
August 29, 2015 14:01
-
-
Save ravinggenius/27824b20862dca50309e to your computer and use it in GitHub Desktop.
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
var gulp = require('gulp'); | |
var clean = require('gulp-clean'); | |
var replace = require('gulp-replace'); | |
var zip = require('gulp-zip'); | |
var jshint = require('gulp-jshint'); | |
var stylish = require('jshint-stylish'); | |
var uglify = require('gulp-uglify'); | |
var minifyCSS = require('gulp-minify-css'); | |
var source = { | |
markup: 'source/**/*.hbs', | |
scripts: 'source/assets/scripts/**/*.js', | |
styles: 'source/assets/styles/**/*.css', | |
static: [ | |
'source/**/*', | |
'!source/**/*.hbs', | |
'!source/assets/scripts/**/*.js', | |
'!source/assets/styles/**/*.css' | |
] | |
}; | |
var destination = { | |
all: 'build/**/*', | |
markup: 'build', | |
scripts: 'build/assets/scripts', | |
styles: 'build/assets/styles', | |
static: 'build' | |
}; | |
var package = { | |
destination: 'packages', | |
name: 'box-model.zip' | |
}; | |
gulp.task('clean', function () { | |
return gulp.src(destination.all, { read: false }) | |
.pipe(clean()); | |
}); | |
gulp.task('lint', function () { | |
return gulp.src(source.scripts) | |
.pipe(jshint()) | |
.pipe(jshint.reporter(stylish)) | |
.pipe(jshint.reporter('fail')); | |
}); | |
gulp.task('build:markup', function () { | |
return gulp.src(source.markup) | |
.pipe(replace(/\n+[\t ]*/g, '')) | |
.pipe(gulp.dest(destination.markup)); | |
}); | |
gulp.task('build:scripts', function () { | |
return gulp.src(source.scripts) | |
.pipe(uglify()) | |
.pipe(gulp.dest(destination.scripts)); | |
}); | |
gulp.task('build:styles', function () { | |
return gulp.src(source.styles) | |
.pipe(minifyCSS()) | |
.pipe(gulp.dest(destination.styles)); | |
}); | |
gulp.task('build:static', function () { | |
return gulp.src(source.static) | |
.pipe(gulp.dest(destination.static)); | |
}); | |
gulp.task('build', [ 'clean' ], function () { | |
return [ | |
'build:markup', | |
'build:scripts', | |
'build:styles', | |
'build:static' | |
].map(function (taskName) { | |
return gulp.tasks[taskName].fn(); | |
}); | |
}); | |
gulp.task('archive', function () { | |
return gulp.src(destination.all) | |
.pipe(zip(package.name)) | |
.pipe(gulp.dest(package.destination)); | |
}); | |
gulp.task('watch', function () { | |
gulp.watch(source.markup, [ 'build:markup' ]); | |
gulp.watch(source.scripts, [ 'build:scripts' ]); | |
gulp.watch(source.styles, [ 'build:styles' ]); | |
gulp.watch(source.static, [ 'build:static' ]); | |
}); | |
gulp.task('default', [ 'lint', 'build', 'watch' ]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I donno, sorry..