forked from c-oh/Instanews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
66 lines (57 loc) · 1.69 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
63
64
65
66
var gulp = require('gulp'),
uglify = require('gulp-uglify'),
rename = require('gulp-rename'),
plumber = require('gulp-plumber'),
browserSync = require('browser-sync'),
sass = require('gulp-sass'),
autoprefixer = require('gulp-autoprefixer'),
cssnano = require('gulp-cssnano'),
eslint = require('gulp-eslint'),
notify = require('gulp-notify'),
rename = require('gulp-rename');
var plumberErrorHandler = {
errorHandler: notify.onError({
title: 'gulp',
message: 'Error: <%= error.message %>'
})
};
gulp.task('js', ['eslint'], function () {
gulp.src('./js/*.js') // what files do we want gulp to consume?
.pipe(uglify()) //uglify minifies the files, pipe chains files together
.pipe(rename({
extname: '.min.js'
})) //we're renaming the ugly file'
.pipe(gulp.dest('./build/js')) //where are we putting the result?
});
gulp.task('eslint', function () {
return gulp.src(['./js/*js'])
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
gulp.task('sass', function () {
gulp.src('./sass/style.scss')
.pipe(plumber(plumberErrorHandler))
.pipe(sass())
.pipe(autoprefixer({
browsers: ['last 2 versions']
}))
.pipe(gulp.dest('./build/css'))
.pipe(cssnano())
.pipe(rename('style.min.css'))
.pipe(gulp.dest('./build/css'));
});
gulp.task('browser-sync', function () {
browserSync.init({
server: {
baseDir: "./",
}
});
gulp.watch(["build/css/*.css", "build/js/*.js"]).on('change', browserSync.reload);
});
//ES LINT
gulp.task('watch', function () {
gulp.watch('js/*.js', ['js', 'eslint']);
gulp.watch('sass/*.scss', ['sass']);
});
gulp.task('default', ['browser-sync', 'watch']);