forked from violentmonkey/violentmonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
143 lines (129 loc) · 3.53 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
const gulp = require('gulp');
const del = require('del');
const log = require('fancy-log');
const gulpFilter = require('gulp-filter');
const uglify = require('gulp-uglify');
const plumber = require('gulp-plumber');
const yaml = require('js-yaml');
const webpack = require('webpack');
const { isProd } = require('@gera2ld/plaid/util');
const webpackConfig = require('./scripts/webpack.conf');
const i18n = require('./scripts/i18n');
const string = require('./scripts/string');
const pkg = require('./package.json');
const DIST = 'dist';
const paths = {
manifest: 'src/manifest.yml',
copy: [
'src/public/images/**',
'src/public/lib/**',
],
locales: [
'src/_locales/**',
],
templates: [
'src/**/*.@(js|html|json|yml|vue)',
],
};
function webpackCallback(err, stats) {
if (err) {
log('[FATAL]', err);
return;
}
if (stats.hasErrors()) {
log('[ERROR] webpack compilation failed\n', stats.toJson().errors.join('\n'));
return;
}
if (stats.hasWarnings()) {
log('[WARNING] webpack compilation has warnings\n', stats.toJson().warnings.join('\n'));
}
(Array.isArray(stats.stats) ? stats.stats : [stats])
.forEach(stat => {
const timeCost = (stat.endTime - stat.startTime) / 1000;
const chunks = Object.keys(stat.compilation.namedChunks).join(' ');
log(`Webpack built: [${timeCost.toFixed(3)}s] ${chunks}`);
});
}
function clean() {
return del(DIST);
}
function watch() {
gulp.watch(paths.manifest, manifest);
gulp.watch(paths.copy, copyFiles);
gulp.watch(paths.locales.concat(paths.templates), copyI18n);
}
async function jsDev() {
require('@gera2ld/plaid-webpack/bin/develop')();
}
async function jsProd() {
return require('@gera2ld/plaid-webpack/bin/build')({
api: true,
keep: true,
});
}
function manifest() {
return gulp.src(paths.manifest, { base: 'src' })
.pipe(string((input, file) => {
const data = yaml.safeLoad(input);
// Strip alphabetic suffix
data.version = pkg.version.replace(/-[^.]*/, '');
file.path = file.path.replace(/\.yml$/, '.json');
return JSON.stringify(data);
}))
.pipe(gulp.dest(DIST));
}
function copyFiles() {
const jsFilter = gulpFilter(['**/*.js'], { restore: true });
let stream = gulp.src(paths.copy, { base: 'src' });
if (isProd) stream = stream
.pipe(jsFilter)
.pipe(uglify())
.pipe(jsFilter.restore);
return stream
.pipe(gulp.dest(DIST));
}
function checkI18n() {
return gulp.src(paths.templates)
.pipe(i18n.extract({
base: 'src/_locales',
extension: '.json',
}));
}
function copyI18n() {
return gulp.src(paths.templates)
.pipe(plumber(logError))
.pipe(i18n.extract({
base: 'src/_locales',
touchedOnly: true,
useDefaultLang: true,
markUntouched: false,
extension: '.json',
}))
.pipe(gulp.dest(`${DIST}/_locales`));
}
/**
* Load locale files (src/_locales/<lang>/message.[json|yml]), and
* update them with keys in template files, then store in `message.yml`.
*/
function updateI18n() {
return gulp.src(paths.templates)
.pipe(plumber(logError))
.pipe(i18n.extract({
base: 'src/_locales',
touchedOnly: false,
useDefaultLang: false,
markUntouched: true,
extension: '.yml',
}))
.pipe(gulp.dest('src/_locales'));
}
function logError(err) {
log(err.toString());
return this.emit('end');
}
const pack = gulp.parallel(manifest, copyFiles, copyI18n);
exports.clean = clean;
exports.dev = gulp.series(gulp.parallel(pack, jsDev), watch);
exports.build = gulp.series(clean, gulp.parallel(pack, jsProd));
exports.i18n = updateI18n;
exports.check = checkI18n;