forked from jakearchibald/svgomg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
209 lines (189 loc) · 5.48 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
const fs = require('fs/promises');
const path = require('path');
const process = require('process');
const sirv = require('sirv-cli');
const { version: SVGO_VERSION } = require('svgo/package.json');
const sass = require('sass');
const CleanCSS = require('clean-css');
const vinylMap = require('vinyl-map');
const gulp = require('gulp');
const gulpif = require('gulp-if');
const gulpSass = require('gulp-sass')(sass);
const gulpNunjucks = require('gulp-nunjucks');
const gulpHtmlmin = require('gulp-htmlmin');
const rollup = require('rollup');
const { nodeResolve: rollupResolve } = require('@rollup/plugin-node-resolve');
const rollupCommon = require('@rollup/plugin-commonjs');
const rollupReplace = require('@rollup/plugin-replace');
const { terser: rollupTerser } = require('rollup-plugin-terser');
const IS_DEV_TASK =
process.argv.includes('dev') || process.argv.includes('--dev');
const buildConfig = {
cleancss: {
level: {
1: {
specialComments: 0,
},
2: {
all: false,
mergeMedia: true,
removeDuplicateMediaBlocks: true,
removeEmpty: true,
},
},
sourceMap: true,
sourceMapInlineSources: true,
},
htmlmin: {
collapseBooleanAttributes: true,
collapseInlineTagWhitespace: false,
collapseWhitespace: true,
decodeEntities: true,
minifyCSS: false,
minifyJS: true,
removeAttributeQuotes: true,
removeComments: true,
removeOptionalTags: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
sortAttributes: true,
sortClassName: true,
},
sass: {
outputStyle: IS_DEV_TASK ? 'expanded' : 'compressed',
},
terser: {
mangle: true,
compress: {
passes: 2,
},
format: {
comments: false,
},
},
};
const readJSON = async (filePath) => {
const content = await fs.readFile(filePath, 'utf8');
return JSON.parse(content);
};
const minifyCss = vinylMap((buffer) => {
return new CleanCSS(buildConfig.cleancss).minify(buffer.toString()).styles;
});
function copy() {
return gulp
.src([
'src/{.well-known,imgs,test-svgs,fonts}/**',
// Exclude the test-svgs files except for `car-lite.svg`
// which is used in the demo
'!src/test-svgs/!(car-lite.svg)',
'!src/imgs/maskable.svg',
'src/*.json',
])
.pipe(gulp.dest('build'));
}
function css() {
return gulp
.src('src/css/*.scss', { sourcemaps: true })
.pipe(gulpSass.sync(buildConfig.sass).on('error', gulpSass.logError))
.pipe(gulpif(!IS_DEV_TASK, minifyCss))
.pipe(gulp.dest('build/', { sourcemaps: '.' }));
}
async function html() {
const [config, changelog, headCSS] = await Promise.all([
readJSON(path.join(__dirname, 'src', 'config.json')),
readJSON(path.join(__dirname, 'src', 'changelog.json')),
fs.readFile(path.join(__dirname, 'build', 'head.css'), 'utf8'),
]);
return gulp
.src('src/*.html')
.pipe(
gulpNunjucks.compile({
plugins: config.plugins,
headCSS,
SVGOMG_VERSION: changelog[0].version,
SVGO_VERSION,
liveBaseUrl: 'https://jakearchibald.github.io/svgomg/',
title: `SVGOMG - SVGO's Missing GUI`,
description: 'Easy & visual compression of SVG images.',
iconPath: 'imgs/icon.png',
}),
)
.pipe(gulpif(!IS_DEV_TASK, gulpHtmlmin(buildConfig.htmlmin)))
.pipe(gulp.dest('build'));
}
const rollupCaches = new Map();
async function js(entry, outputPath) {
const name = path.basename(path.dirname(entry));
const changelog = await readJSON(
path.join(__dirname, 'src', 'changelog.json'),
);
const bundle = await rollup.rollup({
cache: rollupCaches.get(entry),
input: `src/${entry}`,
plugins: [
rollupReplace({
preventAssignment: true,
SVGOMG_VERSION: JSON.stringify(changelog[0].version),
}),
rollupResolve({ browser: true }),
rollupCommon({ include: /node_modules/ }),
// Don't use terser on development
IS_DEV_TASK
? ''
: rollupTerser(
name === 'page'
? {
...buildConfig.terser,
mangle: {
properties: {
regex: /^_/,
},
},
}
: buildConfig.terser,
),
],
});
rollupCaches.set(entry, bundle.cache);
await bundle.write({
sourcemap: true,
format: 'iife',
file: `build/${outputPath}/${name}.js`,
});
}
function clean() {
return fs.rm('build', { force: true, recursive: true });
}
const allJs = gulp.parallel(
js.bind(null, 'js/prism-worker/index.js', 'js/'),
js.bind(null, 'js/gzip-worker/index.js', 'js/'),
js.bind(null, 'js/svgo-worker/index.js', 'js/'),
js.bind(null, 'js/sw/index.js', ''),
js.bind(null, 'js/page/index.js', 'js/'),
);
const mainBuild = gulp.parallel(gulp.series(css, html), allJs, copy);
function watch() {
gulp.watch(['src/css/**/*.scss'], gulp.series(css, html));
gulp.watch(['src/js/**/*.js'], allJs);
gulp.watch(
['src/**/*.{html,svg,woff2}', 'src/*.json'],
gulp.parallel(html, copy, allJs),
);
}
function serve() {
sirv('build', {
host: 'localhost',
port: 8080,
dev: true,
clear: false,
});
}
exports.clean = clean;
exports.allJs = allJs;
exports.css = css;
exports.html = html;
exports.copy = copy;
exports.build = mainBuild;
exports['clean-build'] = gulp.series(clean, mainBuild);
exports.dev = gulp.series(clean, mainBuild, gulp.parallel(watch, serve));