forked from GoogleChrome/web.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
95 lines (86 loc) · 2.99 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
/*
* Copyright 2019 Google LLC
*
* 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.
*/
const path = require("path");
const gulp = require("gulp");
const mozjpeg = require("imagemin-mozjpeg");
const pngquant = require("imagemin-pngquant");
const imagemin = require("gulp-imagemin");
const rename = require("gulp-rename");
const gulpif = require("gulp-if");
/* eslint-disable max-len */
const assetTypes = `jpg,jpeg,png,svg,gif,webp,webm,mp4,mov,ogg,wav,mp3,txt,yaml`;
/* eslint-enable max-len */
const isProd = process.env.ELEVENTY_ENV === "prod";
// These are images that our CSS refers to.
gulp.task("copy-global-images", () => {
return gulp.src(["./src/images/**/*"]).pipe(gulp.dest("./dist/images"));
});
// These are misc top-level assets.
gulp.task("copy-misc", () => {
return gulp.src(["./src/misc/**/*"]).pipe(gulp.dest("./dist"));
});
// Images and any other assets in the content directory that should be copied
// over along with the posts themselves.
// Because we use permalinks to strip the parent directories form our posts
// we need to also strip them from the content paths.
gulp.task("copy-content-assets", () => {
return (
gulp
.src([`./src/site/content/en/**/*.{${assetTypes}}`])
.pipe(
gulpif(
isProd,
imagemin([pngquant({quality: [0.8, 0.8]}), mozjpeg({quality: 80})]),
),
)
// This makes the images show up in the same spot as the permalinked posts
// they belong to.
.pipe(
rename(function(assetPath) {
const parts = assetPath.dirname.split("/");
// Let the en/images directory pass through.
if (parts[0] === "images") {
return;
}
// Let en/handbook images pass through.
if (parts[0] === "handbook") {
return;
}
return (assetPath.dirname = path.basename(assetPath.dirname));
}),
)
.pipe(gulp.dest("./dist/en"))
);
});
gulp.task("copy-node_modules-assets", () => {
return gulp
.src([`./node_modules/@webcomponents/webcomponentsjs/bundles/*.js`])
.pipe(gulp.dest("./dist/lib/webcomponents/bundles/"));
});
gulp.task(
"build",
gulp.parallel(
"copy-global-images",
"copy-misc",
"copy-content-assets",
"copy-node_modules-assets",
),
);
gulp.task("watch", () => {
gulp.watch("./src/images/**/*", gulp.series("copy-global-images"));
gulp.watch("./src/misc/**/*", gulp.series("copy-misc"));
gulp.watch("./src/site/content/**/*", gulp.series("copy-content-assets"));
});