-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
200 lines (155 loc) · 4.94 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
'use strict';
const autoprefixer = require('gulp-autoprefixer');
const browserSync = require('browser-sync');
const combineMq = require('gulp-combine-mq');
const concat = require('gulp-concat');
const config = require('./config.json');
const del = require('del');
const gulp = require('gulp');
const htmlPartial = require('gulp-html-partial');
const notify = require('gulp-notify');
const plumber = require('gulp-plumber');
const sass = require('gulp-sass');
const sourcemaps = require('gulp-sourcemaps');
const uglify = require('gulp-uglify-es').default;
// > Dev tasks
// >> Delete Public folder
gulp.task('clean', del.bind(null, ['public']));
// >> Process HTML files
gulp.task('html', function(done) {
gulp.src(config.html.src)
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(htmlPartial({
basePath: config.html.partials
}))
.pipe(gulp.dest(config.html.dest));
done();
});
// >> Process SCSS files (extended + sourcemaps + autoprefixer)
gulp.task('styles', function(done) {
gulp.src(config.scss.src)
.pipe(sourcemaps.init())
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(sass({
outputStyle: 'extended',
}))
.pipe(combineMq({
beautify: true
}))
.pipe(autoprefixer({
browsers: [
'last 2 versions',
'ie >= 10'
],
cascade: false
}))
.pipe(sourcemaps.write('./'))
.pipe(gulp.dest(config.scss.dest))
.pipe(browserSync.reload({ stream:true }));
done();
});
// >> Concatenate JS files with sourcemaps
gulp.task('scripts', function(done){
gulp.src(config.js.src)
.pipe(sourcemaps.init())
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(concat('main.js'))
.pipe(sourcemaps.write('./'))
.pipe(gulp.dest(config.js.dest))
.pipe(browserSync.reload({ stream:true }));
done();
});
// >> Copy image files
gulp.task('images', function(done) {
gulp.src(config.images.src)
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(gulp.dest(config.images.dest));
done();
});
// >> Copy icon files
gulp.task('icons', function(done) {
gulp.src(config.icons.src)
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(gulp.dest(config.icons.dest));
done();
});
// > Production Tasks
// > Delete Public folder
gulp.task('clean-dist', del.bind(null, ['docs']));
// >> Process HTML files
gulp.task('html-dist', function(done) {
gulp.src(config.html.src)
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(htmlPartial({
basePath: config.html.partials
}))
.pipe(gulp.dest(config.html.dist));
done();
});
// >> Process SCSS files (compressed + autoprefixer)
gulp.task('styles-dist', function(done) {
gulp.src(config.scss.src)
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(sass({
outputStyle: 'compressed',
}))
.pipe(combineMq({
beautify: false
}))
.pipe(autoprefixer({
browsers: [
'last 2 versions',
'ie >= 10'
],
cascade: false
}))
.pipe(gulp.dest(config.scss.dist));
done();
});
// >> Concatenate and minify JS files w/o sourcemaps
gulp.task('scripts-dist', function(done){
gulp.src(config.js.src)
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(concat('main.js'))
.pipe(uglify())
.pipe(gulp.dest(config.js.dist));
done();
});
// >> Copy image files
gulp.task('images-dist', function(done) {
gulp.src(config.images.src)
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(gulp.dest(config.images.dist));
done();
});
// >> Copy icon files
gulp.task('icons-dist', function(done) {
gulp.src(config.icons.src)
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(gulp.dest(config.icons.dist));
done();
});
// > Watchers + BrowserSync server
gulp.task('default', gulp.series(['clean','html', 'styles','scripts', 'images', 'icons'], function(done) {
browserSync.init({
server : {
baseDir: './public/'
}
});
gulp.watch(config.watch.html, gulp.series(['html', 'bs-reload']));
gulp.watch(config.images.src, gulp.series(['images', 'bs-reload']));
gulp.watch(config.icons.src, gulp.series(['icons', 'bs-reload']));
gulp.watch(config.scss.src, gulp.series('styles'));
gulp.watch(config.js.src, gulp.series(['scripts', 'bs-reload']));
done();
}));
// > Build a production-ready version of your proyect
gulp.task('docs', gulp.series(['clean-dist','html-dist','styles-dist','scripts-dist', 'images-dist', 'icons-dist'], function(done) {
console.log('🦄 Build OK!');
done();
}));
// > Recarga las ventanas del navegador
gulp.task('bs-reload', function (done) {
browserSync.reload();
done();
});