Created
January 25, 2015 16:53
-
-
Save ssbb/2e022ff36c4b8c169147 to your computer and use it in GitHub Desktop.
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
/* jshint node:true */ | |
'use strict'; | |
// generated on 2015-01-26 using generator-gulp-webapp 0.2.0 | |
var gulp = require('gulp'); | |
var $ = require('gulp-load-plugins')(); | |
gulp.task('styles', function () { | |
return gulp.src('app/styles/main.less') | |
.pipe($.plumber()) | |
// .pipe($.rubySass({ | |
// style: 'expanded', | |
// precision: 10 | |
// })) | |
.pipe($.less({ | |
paths: ['.'] | |
})) | |
.pipe($.autoprefixer({browsers: ['last 1 version']})) | |
.pipe(gulp.dest('.tmp/styles')); | |
}); | |
gulp.task('views', function () { | |
return gulp.src('app/*.jade') | |
.pipe($.jade({pretty: true})) | |
.pipe(gulp.dest('.tmp')); | |
}); | |
gulp.task('jshint', function () { | |
return gulp.src('app/scripts/**/*.js') | |
.pipe($.jshint()) | |
.pipe($.jshint.reporter('jshint-stylish')) | |
.pipe($.jshint.reporter('fail')); | |
}); | |
gulp.task('html', ['views', 'styles'], function () { | |
var lazypipe = require('lazypipe'); | |
var cssChannel = lazypipe() | |
.pipe($.csso) | |
.pipe($.replace, 'bower_components/bootstrap-sass-official/assets/fonts/bootstrap','fonts'); | |
var assets = $.useref.assets({searchPath: '{.tmp,app}'}); | |
return gulp.src(['app/*.html', '.tmp/*.html']) | |
.pipe(assets) | |
.pipe($.if('*.js', $.uglify())) | |
.pipe($.if('*.css', cssChannel())) | |
.pipe(assets.restore()) | |
.pipe($.useref()) | |
.pipe($.if('*.html', $.minifyHtml({conditionals: true, loose: true}))) | |
.pipe(gulp.dest('dist')); | |
}); | |
gulp.task('images', function () { | |
return gulp.src('app/images/**/*') | |
.pipe($.cache($.imagemin({ | |
progressive: true, | |
interlaced: true | |
}))) | |
.pipe(gulp.dest('dist/images')); | |
}); | |
gulp.task('fonts', function () { | |
return gulp.src(require('main-bower-files')().concat('app/fonts/**/*')) | |
.pipe($.filter('**/*.{eot,svg,ttf,woff}')) | |
.pipe($.flatten()) | |
.pipe(gulp.dest('dist/fonts')); | |
}); | |
gulp.task('extras', function () { | |
return gulp.src([ | |
'app/*.*', | |
'!app/*.html', | |
'!app/*.jade' | |
'node_modules/apache-server-configs/dist/.htaccess' | |
], { | |
dot: true | |
}).pipe(gulp.dest('dist')); | |
}); | |
gulp.task('clean', require('del').bind(null, ['.tmp', 'dist'])); | |
gulp.task('connect', ['views', 'styles'], function () { | |
var serveStatic = require('serve-static'); | |
var serveIndex = require('serve-index'); | |
var app = require('connect')() | |
.use(require('connect-livereload')({port: 35729})) | |
.use(serveStatic('.tmp')) | |
.use(serveStatic('app')) | |
// paths to bower_components should be relative to the current file | |
// e.g. in app/index.html you should use ../bower_components | |
.use('/bower_components', serveStatic('bower_components')) | |
.use(serveIndex('app')); | |
require('http').createServer(app) | |
.listen(9000) | |
.on('listening', function () { | |
console.log('Started connect web server on http://localhost:9000'); | |
}); | |
}); | |
gulp.task('serve', ['connect', 'watch'], function () { | |
require('opn')('http://localhost:9000'); | |
}); | |
// inject bower components | |
gulp.task('wiredep', function () { | |
var wiredep = require('wiredep').stream; | |
gulp.src('app/styles/*.less') | |
.pipe(wiredep()) | |
.pipe(gulp.dest('app/styles')); | |
gulp.src('app/layouts/*.jade') | |
.pipe(wiredep({exclude: ['bootstrap-sass-official']})) | |
.pipe(gulp.dest('app')); | |
}); | |
gulp.task('watch', ['connect'], function () { | |
$.livereload.listen(); | |
// watch for changes | |
gulp.watch([ | |
'app/*.html', | |
'.tmp/*.html', | |
'.tmp/styles/**/*.css', | |
'app/scripts/**/*.js', | |
'app/images/**/*' | |
]).on('change', $.livereload.changed); | |
gulp.watch('app/**/*.jade', ['views']); | |
gulp.watch('app/styles/**/*.less', ['styles']); | |
gulp.watch('bower.json', ['wiredep']); | |
}); | |
gulp.task('build', ['jshint', 'html', 'images', 'fonts', 'extras'], function () { | |
return gulp.src('dist/**/*').pipe($.size({title: 'build', gzip: true})); | |
}); | |
gulp.task('default', ['clean'], function () { | |
gulp.start('build'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment