| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- const del = require('del');
- const gulp = require('gulp');
- const gutil = require('gulp-util');
- const gulpFilter = require('gulp-filter');
- const uglify = require('gulp-uglify');
- const svgSprite = require('gulp-svg-sprite');
- const plumber = require('gulp-plumber');
- const yaml = require('js-yaml');
- const webpack = require('webpack');
- const webpackConfig = require('./scripts/webpack.conf');
- const i18n = require('./scripts/i18n');
- const string = require('./scripts/string');
- const { IS_DEV } = require('./scripts/utils');
- const pkg = require('./package.json');
- 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) {
- gutil.log('[FATAL]', err);
- return;
- }
- if (stats.hasErrors()) {
- gutil.log('[ERROR] webpack compilation failed\n', stats.toJson().errors.join('\n'));
- return;
- }
- if (stats.hasWarnings()) {
- gutil.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(' ');
- gutil.log(`Webpack built: [${timeCost.toFixed(3)}s] ${chunks}`);
- });
- }
- gulp.task('clean', () => del(['dist']));
- gulp.task('pack', ['manifest', 'copy-files', 'copy-i18n']);
- gulp.task('watch', ['pack', 'js-dev', 'svg'], () => {
- gulp.watch(paths.manifest, ['manifest']);
- gulp.watch(paths.copy, ['copy-files']);
- gulp.watch(paths.locales.concat(paths.templates), ['copy-i18n']);
- });
- gulp.task('build', ['pack', 'js-prd', 'svg']);
- gulp.task('js-dev', () => {
- webpack(webpackConfig).watch({}, webpackCallback);
- });
- gulp.task('js-prd', cb => {
- webpack(webpackConfig, (...args) => {
- webpackCallback(...args);
- cb();
- });
- });
- gulp.task('manifest', () => (
- gulp.src(paths.manifest, { base: 'src' })
- .pipe(string((input, file) => {
- const data = yaml.safeLoad(input);
- // Strip alphabetic suffix
- data.version = pkg.version.replace(/-[^.]*/, '');
- if (process.env.TARGET === 'firefox') {
- data.version += 'f';
- delete data.applications.gecko.update_url;
- }
- file.path = file.path.replace(/\.yml$/, '.json');
- return JSON.stringify(data);
- }))
- .pipe(gulp.dest('dist'))
- ));
- gulp.task('copy-files', () => {
- const jsFilter = gulpFilter(['**/*.js'], { restore: true });
- let stream = gulp.src(paths.copy, { base: 'src' });
- if (!IS_DEV) stream = stream
- .pipe(jsFilter)
- .pipe(uglify())
- .pipe(jsFilter.restore);
- return stream
- .pipe(gulp.dest('dist/'));
- });
- gulp.task('copy-i18n', () => (
- gulp.src(paths.templates)
- .pipe(plumber(logError))
- .pipe(i18n.extract({
- base: 'src',
- prefix: '_locales',
- touchedOnly: true,
- useDefaultLang: true,
- markUntouched: false,
- extension: '.json',
- }))
- .pipe(gulp.dest('dist'))
- ));
- gulp.task('svg', () => (
- gulp.src('src/resources/icons/*.svg')
- .pipe(svgSprite({
- mode: {
- symbol: {
- dest: '',
- sprite: 'sprite.svg',
- },
- },
- }))
- .pipe(gulp.dest('dist/public'))
- ));
- /**
- * Load locale files (src/_locales/<lang>/message.[json|yml]), and
- * update them with keys in template files, then store in `message.yml`.
- */
- gulp.task('i18n', () => (
- gulp.src(paths.templates)
- .pipe(plumber(logError))
- .pipe(i18n.extract({
- base: 'src',
- prefix: '_locales',
- touchedOnly: false,
- useDefaultLang: false,
- markUntouched: true,
- extension: '.yml',
- }))
- .pipe(gulp.dest('src'))
- ));
- function logError(err) {
- gutil.log(err.toString());
- return this.emit('end');
- }
|