Created
November 3, 2015 19:25
-
-
Save mendaomn/8dd93d92e2ee24c181c4 to your computer and use it in GitHub Desktop.
Gulpfile - Livereload and webserver
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
// Load plugins | |
var gulp = require('gulp'), | |
autoprefixer = require('gulp-autoprefixer'), | |
concatcss = require('gulp-concat-css'), | |
minifycss = require('gulp-minify-css'), | |
jshint = require('gulp-jshint'), | |
uglify = require('gulp-uglify'), | |
rename = require('gulp-rename'), | |
concat = require('gulp-concat'), | |
notify = require('gulp-notify'), | |
cache = require('gulp-cache'), | |
connect = require('gulp-connect'), | |
watch = require('gulp-watch'); | |
// Styles | |
gulp.task('styles', function() { | |
return gulp.src('css/**/*.css') | |
.pipe(concatcss('styles.css')) | |
.pipe(autoprefixer({ | |
browsers: ['last 2 versions'], | |
cascade: false | |
})) | |
.pipe(rename({ | |
suffix: '.min' | |
})) | |
.pipe(minifycss()) | |
.pipe(gulp.dest('dist/styles')) | |
.pipe(notify({ | |
message: 'Styles task complete' | |
})); | |
}); | |
// Scripts | |
gulp.task('scripts', ['lint'], function() { | |
return gulp.src('js/**/*.js') | |
.pipe(concat('main.js')) | |
.pipe(rename({ | |
suffix: '.min' | |
})) | |
.pipe(uglify()) | |
.pipe(gulp.dest('dist/scripts')) | |
.pipe(notify({ | |
message: 'Scripts task complete' | |
})); | |
}); | |
// JSHint | |
gulp.task('lint', function() { | |
return gulp.src('js/**/*.js') | |
.pipe(jshint()) | |
.pipe(jshint.reporter('default')); | |
}); | |
// Watch | |
gulp.task('watch', function() { | |
gulp.watch('css/**/*.css', ['styles']); | |
gulp.watch('js/**/*.js', ['scripts']); | |
}); | |
// Server | |
gulp.task('webserver', function() { | |
connect.server({ | |
livereload: true | |
}); | |
}); | |
// Live Reload | |
gulp.task('livereload', function() { | |
gulp.src(['pages/**/*.html', 'index.html', 'css/**/*.css', 'js/**/*.js']) | |
.pipe(watch(['pages/**/*.html', 'index.html', 'css/**/*.css', 'js/**/*.js'])) | |
.pipe(connect.reload()); | |
}); | |
// Default task | |
gulp.task('default', ['webserver', 'livereload'], function() { | |
gulp.start('styles', 'scripts', 'watch'); | |
}); |
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
"devDependencies": { | |
"gulp": "^3.9.0", | |
"gulp-autoprefixer": "^3.1.0", | |
"gulp-cache": "^0.3.0", | |
"gulp-concat": "^2.6.0", | |
"gulp-concat-css": "^2.2.0", | |
"gulp-connect": "^2.2.0", | |
"gulp-jshint": "^1.11.2", | |
"gulp-minify-css": "^1.2.1", | |
"gulp-notify": "^2.2.0", | |
"gulp-rename": "^1.2.2", | |
"gulp-uglify": "^1.4.2", | |
"gulp-watch": "^4.3.5" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment