-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
121 lines (105 loc) · 2.9 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
'use strict';
const del = require('del');
const gulp = require('gulp');
const sass = require('gulp-sass');
const plumber = require('gulp-plumber');
const postcss = require('gulp-postcss');
const autoprefixer = require('autoprefixer');
const server = require('browser-sync').create();
const mqpacker = require('css-mqpacker');
const minify = require('gulp-csso');
const rename = require('gulp-rename');
const imagemin = require('gulp-imagemin');
const rollup = require('gulp-better-rollup');
const sourcemaps = require('gulp-sourcemaps');
const mocha = require('gulp-mocha');
gulp.task('style', function () {
gulp.src('sass/style.scss')
.pipe(plumber())
.pipe(sass())
.pipe(postcss([
autoprefixer({
browsers: [
'last 1 version',
'last 2 Chrome versions',
'last 2 Firefox versions',
'last 2 Opera versions',
'last 2 Edge versions'
]
}),
mqpacker({sort: true})
]))
.pipe(gulp.dest('build/css'))
.pipe(server.stream())
.pipe(minify())
.pipe(rename('style.min.css'))
.pipe(gulp.dest('build/css'));
});
gulp.task('scripts', function () {
return gulp.src('js/**/*.js')
.pipe(plumber())
.pipe(sourcemaps.init())
.pipe(rollup({}, 'iife'))
.pipe(sourcemaps.write(''))
.pipe(gulp.dest('build/js/'));
});
gulp.task('test', function () {
return gulp.src(['js/**/*.test.js'], { read:false })
.pipe(mocha({
compilers: ['js:babel-register'],
reporter: 'nyan',
}));
});
gulp.task('imagemin', ['copy'], function () {
return gulp.src('build/img/**/*.{jpg,png,gif}')
.pipe(imagemin([
imagemin.optipng({optimizationLevel: 3}),
imagemin.jpegtran({progressive: true})
]))
.pipe(gulp.dest('build/img'));
});
gulp.task('copy-html', function () {
return gulp.src('*.html')
.pipe(gulp.dest('build'))
.pipe(server.stream());
});
gulp.task('copy-music', function(){
return gulp.src('music/*.*')
.pipe(gulp.dest('build/music'));
});
gulp.task('copy-img', function(){
return gulp.src('img/**/*.*')
.pipe(gulp.dest('build/img'));
})
gulp.task('copy', ['copy-html', 'scripts', 'style'], function () {
return gulp.src([
'fonts/**/*.{woff,woff2}',
'img/*.*',
], {base: '.'})
.pipe(gulp.dest('build'));
});
gulp.task('clean', function () {
return del('build');
});
gulp.task('js-watch', ['scripts'], function (done) {
server.reload();
done();
});
gulp.task('serve', ['assemble'], function () {
server.init({
server: './build',
notify: false,
open: true,
port: 3502,
ui: false
});
gulp.watch('sass/**/*.{scss,sass}', ['style']);
//gulp.watch('*.html', ['copy-html']);
gulp.watch('js/**/*.js', ['js-watch']);
gulp.watch('img/**/*.*', ['copy-img'])
gulp.watch('music/*.*', ['copy-music'])
});
gulp.task('assemble', ['clean'], function () {
gulp.start('copy', 'style');
});
gulp.task('build', ['assemble', 'imagemin', 'copy-music']);