-
Notifications
You must be signed in to change notification settings - Fork 9
/
gulpfile.babel.js
469 lines (438 loc) · 13.2 KB
/
gulpfile.babel.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
/**
*
* Web Starter Kit
* Copyright 2015 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*
*/
"use strict";
// This gulpfile makes use of new JavaScript features.
// Babel handles this without us having to do anything. It just works.
// You can read more about the new JavaScript features here:
// https://babeljs.io/docs/learn-es2015/
import path from "path";
import gulp from "gulp";
import del from "del";
import runSequence from "run-sequence";
import browserSync from "browser-sync";
import swPrecache from "sw-precache";
import gulpLoadPlugins from "gulp-load-plugins";
import inject from "gulp-inject";
import { output as pagespeed } from "psi";
import pkg from "./package.json";
import revReplace from "gulp-rev-replace";
import rev from "gulp-rev";
import responsive from "gulp-responsive";
const $ = gulpLoadPlugins();
const reload = browserSync.reload;
// Lint JavaScript
gulp.task("lint", () =>
gulp
.src(["app/scripts/**/*.js", "!app/scripts/material.min.js"])
.pipe($.eslint())
.pipe($.eslint.format())
.pipe($.if(!browserSync.active, $.eslint.failOnError()))
);
// Optimize images
gulp.task("images", () =>
gulp
.src([
"app/images/**/*",
"!app/images/speakers/**",
"!app/images/agenda/**",
])
// .pipe($.cache($.imagemin({
// progressive: true,
// interlaced: true
// })))
.pipe(gulp.dest("dist/images"))
.pipe($.size({ title: "images" }))
);
gulp.task("images2", ["images", "images3"], () =>
gulp
.src("app/images/speakers/**")
// .pipe(
// responsive({
// "*.{png,jpg,jpeg}": {
// width: 100,
// quality: 50,
// withoutEnlargement: false,
// },
// })
// )
.pipe(gulp.dest("dist/images/speakers"))
);
gulp.task("images3", ["images"], () =>
gulp
.src("app/images/agenda/**")
// .pipe(
// responsive({
// "*.png": {
// width: 50,
// withoutEnlargement: false,
// },
// })
// )
.pipe(gulp.dest("dist/images/agenda"))
);
// Copy all files at the root level (app)
gulp.task("copy", () => {
gulp
.src(
[
"app/*",
"app.yaml",
"!app/*.html",
// 'node_modules/apache-server-configs/dist/.htaccess'
],
{
dot: true,
}
)
.pipe(gulp.dest("dist"))
.pipe($.size({ title: "copy" }));
return gulp
.src(["app/scripts/material.min.js"], {
dot: true,
})
.pipe(gulp.dest("dist/scripts"))
.pipe($.size({ title: "copy" }));
});
// Copy all files at the root level (app)
gulp.task("assets", () => {
gulp
.src("app/assets/*")
.pipe($.newer(".tmp/assets"))
.pipe(gulp.dest(".tmp/assets"))
.pipe($.newer("dist/assets"))
.pipe(gulp.dest("dist/assets"));
});
// Compile and automatically prefix stylesheets
gulp.task("styles", () => {
const AUTOPREFIXER_BROWSERS = [
"ie >= 10",
"ie_mob >= 10",
"ff >= 30",
"chrome >= 34",
"safari >= 7",
"opera >= 23",
"ios >= 7",
"android >= 4.4",
"bb >= 10",
];
// For best performance, don't add Sass partials to `gulp.src`
return (
gulp
.src([
"app/styles/**/*.scss",
"app/styles/**/*.css",
// '!app/styles/material.indigo-red.min.css'
])
.pipe($.newer(".tmp/styles"))
.pipe($.sourcemaps.init())
.pipe(
$.sass({
precision: 10,
}).on("error", $.sass.logError)
)
.pipe($.autoprefixer(AUTOPREFIXER_BROWSERS))
.pipe(gulp.dest(".tmp/styles"))
// Concatenate and minify styles
.pipe($.if("*.css", $.cssnano()))
.pipe($.size({ title: "styles" }))
.pipe($.sourcemaps.write("./"))
.pipe(gulp.dest("dist/styles"))
);
});
/**
* Inject UTF8 Tags
* @param {filePath} filePath .
* @param {file} file .
* @return {int} The sum of the two numbers.
*/
function injection(filePath, file) {
return file.contents.toString("utf8");
}
gulp.task("inject", () => {
del([".tmp/**/*.html"]);
// FR
gulp
.src(["./app/*.html"])
.pipe($.newer(".tmp"))
.pipe(
inject(gulp.src(["./app/partials/head.html"]), {
starttag: "<!-- inject:head:{{ext}} -->",
transform: injection,
})
)
.pipe(
inject(gulp.src(["./app/partials/menu.html"]), {
starttag: "<!-- inject:menu:{{ext}} -->",
transform: injection,
})
)
.pipe(
inject(gulp.src(["./app/partials/footer.html"]), {
starttag: "<!-- inject:footer:{{ext}} -->",
transform: injection,
})
)
.pipe(
inject(gulp.src(["./app/partials/platiniums.html"]), {
starttag: "<!-- inject:platiniums:{{ext}} -->",
transform: injection,
})
)
.pipe(gulp.dest(".tmp"))
.pipe(gulp.dest("dist"));
});
gulp.task("inject_en", () => {
del([".tmp/**/*.html"]);
// EN
gulp
.src(["./app/en/*.html"])
.pipe($.newer(".tmp/en"))
.pipe(
inject(gulp.src(["./app/en/partials/head.html"]), {
starttag: "<!-- inject:head:{{ext}} -->",
transform: injection,
})
)
.pipe(
inject(gulp.src(["./app/en/partials/menu.html"]), {
starttag: "<!-- inject:menu:{{ext}} -->",
transform: injection,
})
)
.pipe(
inject(gulp.src(["./app/en/partials/footer.html"]), {
starttag: "<!-- inject:footer:{{ext}} -->",
transform: injection,
})
)
.pipe(
inject(gulp.src(["./app/en/partials/platiniums.html"]), {
starttag: "<!-- inject:platiniums:{{ext}} -->",
transform: injection,
})
)
.pipe(gulp.dest(".tmp/en"))
.pipe(gulp.dest("dist/en"));
});
// Concatenate and minify JavaScript. Optionally transpiles ES2015 code to ES5.
// to enables ES2015 support remove the line `"only": "gulpfile.babel.js",` in the
// `.babelrc` file.
gulp.task("scripts", () =>
gulp
.src([
// Note: Since we are not using useref in the scripts build pipeline,
// you need to explicitly list your scripts here in the right order
// to be correctly concatenated
"./app/scripts/main.js",
"./app/scripts/utils.js",
// Attention l'ordre de declaration des scripts est important (notamment l'ordre des composants)
"./app/scripts/components/favorite.js",
"./app/scripts/components/agenda-slot.js",
"./app/scripts/components/session-card.js",
"./app/scripts/components/agenda.js",
"./app/scripts/components/social-chip.js",
"./app/scripts/components/speaker-card.js",
"./app/scripts/speaker.js",
"./app/scripts/speakers.js",
"./app/scripts/agenda.js",
"./app/scripts/session.js",
// Other scripts
])
.pipe($.sourcemaps.init())
.pipe($.babel())
.pipe($.concat("main.js"))
.pipe($.uglify({ preserveComments: "some" }))
.pipe($.sourcemaps.write())
.pipe(gulp.dest(".tmp/scripts/"))
.pipe(gulp.dest("dist/scripts/"))
.pipe($.size({ title: "scripts" }))
);
// Scan your HTML for assets & optimize them
gulp.task("html", () => {
return (
gulp
.src(".tmp/*.html")
.pipe($.useref({ searchPath: "{.tmp,app}" }))
// Remove any unused CSS
.pipe(
$.if(
"*.css",
$.uncss({
html: [".tmp/*.html"],
// CSS Selectors for UnCSS to ignore
ignore: [],
})
)
)
// Concatenate and minify styles
// In case you are still using useref build blocks
.pipe($.if("*.css", $.cssnano()))
// Minify any HTML
.pipe(
$.if(
"*.html",
$.htmlmin({
removeComments: true,
collapseWhitespace: true,
collapseBooleanAttributes: true,
removeAttributeQuotes: true,
removeRedundantAttributes: true,
removeEmptyAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
removeOptionalTags: true,
})
)
)
// Output files
.pipe($.if("*.html", $.size({ title: "html", showFiles: true })))
.pipe(gulp.dest("dist"))
);
});
// Clean output directory
gulp.task("clean", () => del([".tmp", "dist/*", "!dist/.git"], { dot: true }));
// Watch files for changes & reload
gulp.task(
"serve",
["scripts", "styles", "assets", "inject", "inject_en"],
() => {
browserSync({
notify: false,
// Customize the Browsersync console logging prefix
logPrefix: "WSK",
// Allow scroll syncing across breakpoints
scrollElementMapping: ["main", ".mdl-layout"],
// Run as an https by uncommenting 'https: true'
// Note: this uses an unsigned certificate which on first access
// will present a certificate warning in the browser.
// https: true,
server: [".tmp", "app"],
port: 3000,
});
gulp.watch([".tmp/**/*.html"]);
gulp.watch(["app/assets/*.json"]);
gulp.watch(["app/**/*.html"], ["inject", "inject_en", reload]);
gulp.watch(["app/styles/**/*.{scss,css}"], ["styles", reload]);
gulp.watch(["app/scripts/**/*.js"], ["scripts", reload]);
gulp.watch(["app/images/**/*"], reload);
}
);
// Build and serve the output from the dist build
gulp.task("serve:dist", ["default"], () =>
browserSync({
notify: false,
logPrefix: "WSK",
// Allow scroll syncing across breakpoints
scrollElementMapping: ["main", ".mdl-layout"],
// Run as an https by uncommenting 'https: true'
// Note: this uses an unsigned certificate which on first access
// will present a certificate warning in the browser.
// https: true,
server: "dist",
port: 3001,
})
);
// Build production files, the default task
gulp.task("default", ["clean"], (cb) =>
runSequence(
"styles",
"inject",
"inject_en",
["html", "scripts", "assets", "images2", "copy"],
"generate-service-worker",
"revreplace",
cb
)
);
// Run PageSpeed Insights
gulp.task("pagespeed", (cb) =>
// Update the below URL to the public URL of your site
pagespeed(
"https://devfest.gdgnantes.com",
{
strategy: "mobile",
// By default we use the PageSpeed Insights free (no API key) tier.
// Use a Google Developer API key if you have one: http://goo.gl/RkN0vE
// key: 'YOUR_API_KEY'
},
cb
)
);
// Copy over the scripts that are used in importScripts as part of the generate-service-worker task.
gulp.task("copy-sw-scripts", () => {
// return gulp
// .src([
// "node_modules/sw-toolbox/sw-toolbox.js",
// "app/scripts/sw/runtime-caching.js",
// ])
// .pipe(gulp.dest("dist/scripts/sw"));
});
// See http://www.html5rocks.com/en/tutorials/service-worker/introduction/ for
// an in-depth explanation of what service workers are and why you should care.
// Generate a service worker file that will provide offline functionality for
// local resources. This should only be done for the 'dist' directory, to allow
// live reload to work as expected when serving from the 'app' directory.
gulp.task("generate-service-worker", ["copy-sw-scripts"], () => {
// const rootDir = "dist";
// const filepath = path.join(rootDir, "service-worker.js");
// return swPrecache.write(filepath, {
// // Used to avoid cache conflicts when serving on localhost.
// cacheId: pkg.name || "web-starter-kit",
// // sw-toolbox.js needs to be listed first. It sets up methods used in runtime-caching.js.
// importScripts: [
// "scripts/sw/sw-toolbox.js",
// "scripts/sw/runtime-caching.js",
// ],
// staticFileGlobs: [
// // Add/remove glob patterns to match your directory setup.
// `${rootDir}/images/**/*`,
// `${rootDir}/scripts/**/*.js`,
// `${rootDir}/styles/**/*.css`,
// `${rootDir}/**/*.html`,
// `${rootDir}/*.{html,json}`,
// ],
// // Translates a static file path to the relative URL that it's served from.
// stripPrefix: path.join(rootDir, path.sep),
// });
});
// Load custom tasks from the `tasks` directory
// Run: `npm install --save-dev require-dir` from the command-line
// try { require('require-dir')('tasks'); } catch (err) { console.error(err); }
gulp.task("revision", () => {
return gulp
.src(["dist/**/*.css", "dist/**/*.js"])
.pipe(rev())
.pipe(gulp.dest("dist"))
.pipe(rev.manifest())
.pipe(gulp.dest("dist"));
});
gulp.task("revreplace-yaml", ["revision"], () => {
var manifest = gulp.src("./dist/rev-manifest.json");
return gulp
.src("dist/app.yaml")
.pipe(revReplace({ manifest: manifest, replaceInExtensions: ".yaml" }))
.pipe(gulp.dest("dist"));
});
gulp.task("revreplace", ["revreplace-yaml"], () => {
var manifest = gulp.src("./dist/rev-manifest.json");
return gulp
.src("dist/**/*.html")
.pipe(revReplace({ manifest: manifest }))
.pipe(gulp.dest("dist"));
});