-
-
Save kentliau/8797694 to your computer and use it in GitHub Desktop.
Gulpfile and Gruntfile sample
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
/*! | |
* Grunt | |
* $ npm install grunt-contrib-uglify grunt-autoprefixer grunt-contrib-cssmin grunt-contrib-imagemin grunt-contrib-sass grunt-contrib-watch grunt-contrib-concat grunt-contrib-clean grunt-contrib-jshint grunt-notify --save-dev | |
*/ | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
// Sass | |
sass: { | |
dist: { | |
options: { | |
style: 'expanded' | |
}, | |
files: { | |
'dist/styles/main.css': 'src/styles/main.scss' | |
} | |
} | |
}, | |
// Autoprefix | |
autoprefixer: { | |
options: { | |
browsers: [ | |
'last 2 version', 'safari 5', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4' | |
] | |
}, | |
dist: { | |
src: 'dist/styles/main.css' | |
} | |
}, | |
// CSS minify | |
cssmin: { | |
dist: { | |
files: { | |
'dist/styles/main.min.css': 'dist/styles/main.css' | |
} | |
} | |
}, | |
// JShint | |
jshint: { | |
files: ['src/scripts/**/*.js'], | |
options: { | |
jshintrc: '.jshintrc' | |
} | |
}, | |
// Concat | |
concat: { | |
js: { | |
src: ['src/scripts/**/*.js'], | |
dest: 'dist/scripts/main.js' | |
}, | |
}, | |
// Uglify | |
uglify: { | |
dist: { | |
src: 'dist/scripts/main.js', | |
dest: 'dist/scripts/main.min.js' | |
}, | |
}, | |
// Imagemin | |
imagemin: { | |
dist: { | |
options: { | |
optimizationLevel: 3, | |
progressive: true, | |
interlaced: true | |
}, | |
files: [{ | |
expand: true, | |
cwd: 'src/images', | |
src: ['**/*.{png,jpg,gif}'], | |
dest: 'dist/images' | |
}] | |
} | |
}, | |
// Clean | |
clean: { | |
build: ['dist/styles', 'dist/scripts', 'dist/images'] | |
}, | |
// Notify | |
notify: { | |
styles: { | |
options: { | |
message: 'Styles task complete', | |
} | |
}, | |
scripts: { | |
options: { | |
message: 'Scripts task complete', | |
} | |
}, | |
images: { | |
options: { | |
message: 'Images task complete', | |
} | |
}, | |
}, | |
// Watch | |
watch: { | |
styles: { | |
files: 'src/styles/**/*.scss', | |
tasks: ['sass', 'autoprefixer', 'cssmin', 'notify:styles'], | |
}, | |
scripts: { | |
files: 'src/scripts/**/*.js', | |
tasks: ['concat', 'uglify', 'notify:scripts'], | |
}, | |
images: { | |
files: 'src/images/**/*', | |
tasks: ['imagemin', 'notify:images'], | |
}, | |
livereload: { | |
options: { livereload: true }, | |
files: [ | |
'dist/styles/**/*.css', | |
'dist/scripts/**/*.js', | |
'dist/images/**/*' | |
] | |
} | |
} | |
}); | |
// Default task | |
grunt.registerTask('default', [ | |
'jshint', | |
'clean', | |
'concat', | |
'uglify', | |
'sass', | |
'autoprefixer', | |
'cssmin', | |
'imagemin' | |
]); | |
// Load plugins | |
grunt.loadNpmTasks('grunt-contrib-uglify'); | |
grunt.loadNpmTasks('grunt-autoprefixer'); | |
grunt.loadNpmTasks('grunt-contrib-cssmin'); | |
grunt.loadNpmTasks('grunt-contrib-sass'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.loadNpmTasks('grunt-contrib-concat'); | |
grunt.loadNpmTasks('grunt-contrib-jshint'); | |
grunt.loadNpmTasks('grunt-contrib-imagemin'); | |
grunt.loadNpmTasks('grunt-contrib-clean'); | |
grunt.loadNpmTasks('grunt-notify'); | |
}; |
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'), | |
sass = require('gulp-ruby-sass'), | |
autoprefixer = require('gulp-autoprefixer'), | |
minifycss = require('gulp-minify-css'), | |
jshint = require('gulp-jshint'), | |
uglify = require('gulp-uglify'), | |
imagemin = require('gulp-imagemin'), | |
rename = require('gulp-rename'), | |
clean = require('gulp-clean'), | |
concat = require('gulp-concat'), | |
notify = require('gulp-notify'), | |
cache = require('gulp-cache'), | |
livereload = require('gulp-livereload'), | |
lr = require('tiny-lr'), | |
server = lr(); | |
// Styles | |
gulp.task('styles', function() { | |
return gulp.src('src/styles/main.scss') | |
.pipe(sass({ style: 'expanded', })) | |
.pipe(autoprefixer('last 2 version', 'safari 5', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4')) | |
.pipe(gulp.dest('dist/styles')) | |
.pipe(rename({ suffix: '.min' })) | |
.pipe(minifycss()) | |
.pipe(livereload(server)) | |
.pipe(gulp.dest('dist/styles')) | |
.pipe(notify({ message: 'Styles task complete' })); | |
}); | |
// Scripts | |
gulp.task('scripts', function() { | |
return gulp.src('src/scripts/**/*.js') | |
.pipe(jshint('.jshintrc')) | |
.pipe(jshint.reporter('default')) | |
.pipe(concat('main.js')) | |
.pipe(gulp.dest('dist/scripts')) | |
.pipe(rename({ suffix: '.min' })) | |
.pipe(uglify()) | |
.pipe(livereload(server)) | |
.pipe(gulp.dest('dist/scripts')) | |
.pipe(notify({ message: 'Scripts task complete' })); | |
}); | |
// Images | |
gulp.task('images', function() { | |
return gulp.src('src/images/**/*') | |
.pipe(cache(imagemin({ optimizationLevel: 3, progressive: true, interlaced: true }))) | |
.pipe(livereload(server)) | |
.pipe(gulp.dest('dist/images')) | |
.pipe(notify({ message: 'Images task complete' })); | |
}); | |
// Clean | |
gulp.task('clean', function() { | |
return gulp.src(['dist/styles', 'dist/scripts', 'dist/images'], {read: false}) | |
.pipe(clean()); | |
}); | |
// Default task | |
gulp.task('default', ['clean'], function() { | |
gulp.start('styles', 'scripts', 'images'); | |
}); | |
// Watch | |
gulp.task('watch', function() { | |
// Listen on port 35729 | |
server.listen(35729, function (err) { | |
if (err) { | |
return console.log(err) | |
}; | |
// Watch .scss files | |
gulp.watch('src/styles/**/*.scss', ['styles']); | |
// Watch .js files | |
gulp.watch('src/scripts/**/*.js', ['scripts']); | |
// Watch image files | |
gulp.watch('src/images/**/*', ['images']); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment