forked from erikmellum/gulp_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
62 lines (55 loc) · 1.56 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Include gulp
var gulp = require('gulp');
// Include Our Plugins
var jshint = require('gulp-jshint');
var sass = require('gulp-sass');
var coffee = require('gulp-coffee');
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var rename = require('gulp-rename');
var livereload = require('gulp-livereload');
// Lint Task
gulp.task('lint', function() {
return gulp.src('js/*.js')
.pipe(jshint())
.pipe(jshint.reporter('default'));
});
// Compile Our Sass
gulp.task('sass', function() {
return gulp.src('scss/*.scss')
.pipe(sass({
includePaths: [
'./bower_components/bootstrap-sass-official/assets/stylesheets'
]
}))
.pipe(gulp.dest('css'))
.pipe(livereload());
});
// Compile our coffee
gulp.task('coffee', function() {
gulp.src('coffee/*.coffee')
.pipe(coffee({bare: true}))
.pipe(gulp.dest('js'));
});
// Concatenate & Minify JS
gulp.task('scripts', function() {
return gulp.src('js/*.js')
.pipe(concat('all.js'))
.pipe(gulp.dest('dist'))
.pipe(rename('all.min.js'))
.pipe(uglify())
.pipe(gulp.dest('dist'))
.pipe(livereload());
});
// Watch Files For Changes
gulp.task('watch', function() {
livereload.listen();
gulp.watch('coffee/*.coffee', ['coffee']);
gulp.watch('js/*.js', ['lint', 'scripts']);
gulp.watch('*.html', function(e){
livereload.changed(e.path);
});
gulp.watch('scss/*.scss', ['sass']);
});
// Default Task
gulp.task('default', ['lint', 'sass', 'coffee', 'scripts', 'watch']);