Created
September 18, 2015 18:12
-
-
Save stevenacalhoun/4cb6e76f52276d0713b8 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'), | |
$ = require('gulp-load-plugins')(), | |
browserSync = require('browser-sync'), | |
runSequence = require('run-sequence'), | |
del = require('del'); | |
var paths = { | |
app: 'app', | |
html: 'app/**/*.html', | |
styles: 'app/styles/**/*.scss', | |
scripts: 'app/scripts/**/*.js', | |
images: 'app/images/**/*.{png,gif,jpg,jpeg,svg}', | |
vendor: 'vendor', | |
files: 'app/files/**/*' | |
}; | |
gulp.task('html', function (cb) { | |
return gulp.src(paths.html) | |
.pipe(gulp.dest('.tmp')) | |
.pipe(browserSync.reload({stream: true})); | |
}); | |
gulp.task('styles', function () { | |
return $.rubySass('app/styles/', { | |
style: 'nested', | |
loadPath: [paths.styles], | |
onError: console.error.bind(console, 'Sass error:') | |
}) | |
.pipe($.autoprefixer('last 2 version', 'safari 5', 'ie 9', 'opera 12.1', 'ios 6', 'android 4')) | |
.pipe(gulp.dest('.tmp/styles')) | |
.pipe(browserSync.reload({ stream: true })); | |
}); | |
gulp.task('scripts', function () { | |
return gulp.src(paths.scripts) | |
.pipe($.jshint('.jshintrc')) | |
.pipe($.jshint.reporter('default')) | |
.pipe(gulp.dest('.tmp/scripts')) | |
.pipe(browserSync.reload({ stream: true })); | |
}); | |
gulp.task('images', function () { | |
return gulp.src(paths.images) | |
.pipe($.imagemin({ | |
progressive: true, | |
svgoPlugins: [{ removeViewBox: false }], | |
use: [] | |
})) | |
.pipe(gulp.dest('dist/images')); | |
}); | |
gulp.task('files', function() { | |
return gulp.src(paths.files) | |
.pipe(gulp.dest('dist/files')); | |
}); | |
// Watch Files For Changes | |
gulp.task('watch', function() { | |
gulp.watch(paths.html, ['html']) | |
gulp.watch(paths.styles, ['styles']); | |
gulp.watch(paths.scripts, ['scripts']); | |
}); | |
// Copy all other files to dist directly | |
gulp.task('copy', function() { | |
gulp.src('favicon.ico', {cwd: paths.app}) | |
.pipe(gulp.dest(".tmp")); | |
}); | |
// Default Task | |
gulp.task('default', ['styles', 'watch', 'images']); | |
gulp.task('browser-sync', ['html', 'styles', 'scripts', 'copy'], function () { | |
browserSync({ | |
notify: false, | |
port: 9000, | |
server: { | |
baseDir: ['.tmp', paths.app], | |
routes: { | |
'/vendor': 'vendor' | |
} | |
} | |
}); | |
}); | |
gulp.task('gh-pages', function () { | |
return gulp.src('dist/**/*') | |
.pipe($.ghPages({ | |
branch: 'master' | |
})) | |
}); | |
gulp.task('build', ['html', 'styles', 'scripts', 'images', 'files'], function() { | |
gulp.src(['.tmp/**/*', paths.vendor, 'CNAME']) | |
.pipe(gulp.dest('dist')) | |
}) | |
gulp.task('serve', function () { | |
runSequence(['browser-sync', 'watch']); | |
}); | |
gulp.task('deploy',['build'], function () { | |
runSequence('gh-pages'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment