-
Notifications
You must be signed in to change notification settings - Fork 3
/
gulpfile.js
275 lines (255 loc) · 6.88 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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
"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-landing', function(done){
gulp.src("_src/assets/js/landing.js")
.pipe(sourcemaps.init())
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(concat('landing.js'))
.pipe(sourcemaps.write('./'))
.pipe(gulp.dest(config.js.dest))
.pipe(browserSync.reload({ stream:true }));
done();
});
gulp.task('scripts-main', function(done){
gulp.src(["_src/assets/js/**/*.js", "!_src/assets/js/landing.js"])
.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 fonts folder
gulp.task("fonts", function(done) {
gulp
.src(config.fonts.src)
.pipe(
plumber({ errorHandler: notify.onError("Error: <%= error.message %>") })
)
.pipe(gulp.dest(config.fonts.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
// >> Concatenate JS files with sourcemaps
gulp.task('scripts-landing-dist', function(done){
gulp.src("_src/assets/js/landing.js")
.pipe(sourcemaps.init())
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(concat('landing.js'))
.pipe(sourcemaps.write('./'))
.pipe(gulp.dest(config.js.dist))
.pipe(browserSync.reload({ stream:true }));
done();
});
gulp.task('scripts-main-dist', function(done){
gulp.src(["_src/assets/js/**/*.js", "!_src/assets/js/landing.js"])
.pipe(sourcemaps.init())
.pipe(plumber({errorHandler: notify.onError('Error: <%= error.message %>')}))
.pipe(concat('main.js'))
.pipe(sourcemaps.write('./'))
.pipe(gulp.dest(config.js.dist))
.pipe(browserSync.reload({ stream:true }));
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 fonts files
gulp.task("fonts-dist", function(done) {
gulp
.src(config.fonts.src)
.pipe(
plumber({ errorHandler: notify.onError("Error: <%= error.message %>") })
)
.pipe(gulp.dest(config.fonts.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-landing","scripts-main", "images", "icons", "fonts"],
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-main", "bs-reload"]));
gulp.watch(config.js.src, gulp.series(["scripts-landing", "bs-reload"]));
gulp.watch(config.js.src, gulp.series(["fonts", "bs-reload"]));
done();
}
)
);
//> Build a production-ready version of your proyect
gulp.task(
"docs",
gulp.series(
[
"clean-dist",
"html-dist",
"styles-dist",
"scripts-main-dist",
"scripts-landing-dist",
"images-dist",
"icons-dist",
"fonts-dist"
],
function(done) {
console.log("🦄 Build OK!");
done();
}
)
);
//> Recarga las ventanas del navegador
gulp.task("bs-reload", function(done) {
browserSync.reload();
done();
});