2021-02-18 15:27:46 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import plugins from 'gulp-load-plugins';
|
|
|
|
import yargs from 'yargs';
|
|
|
|
import browser from 'browser-sync';
|
|
|
|
import gulp from 'gulp';
|
|
|
|
import rimraf from 'rimraf';
|
|
|
|
import yaml from 'js-yaml';
|
|
|
|
import fs from 'fs';
|
|
|
|
import dateFormat from 'dateformat';
|
|
|
|
import webpackStream from 'webpack-stream';
|
|
|
|
import webpack2 from 'webpack';
|
|
|
|
import named from 'vinyl-named';
|
|
|
|
import log from 'fancy-log';
|
|
|
|
import colors from 'ansi-colors';
|
|
|
|
|
|
|
|
// Load all Gulp plugins into one variable
|
|
|
|
const $ = plugins();
|
|
|
|
|
|
|
|
// Check for --production flag
|
|
|
|
const PRODUCTION = !!(yargs.argv.production);
|
|
|
|
|
|
|
|
// Check for --development flag unminified with sourcemaps
|
|
|
|
const DEV = !!(yargs.argv.dev);
|
|
|
|
|
|
|
|
// Load settings from settings.yml
|
|
|
|
const { BROWSERSYNC, COMPATIBILITY, REVISIONING, PATHS } = loadConfig();
|
|
|
|
|
|
|
|
// Check if file exists synchronously
|
|
|
|
function checkFileExists(filepath) {
|
|
|
|
let flag = true;
|
|
|
|
try {
|
|
|
|
fs.accessSync(filepath, fs.F_OK);
|
|
|
|
} catch(e) {
|
|
|
|
flag = false;
|
|
|
|
}
|
|
|
|
return flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load default or custom YML config file
|
|
|
|
function loadConfig() {
|
|
|
|
log('Loading config file...');
|
|
|
|
|
|
|
|
if (checkFileExists('config.yml')) {
|
|
|
|
// config.yml exists, load it
|
|
|
|
log(colors.bold(colors.cyan('config.yml')), 'exists, loading', colors.bold(colors.cyan('config.yml')));
|
|
|
|
let ymlFile = fs.readFileSync('config.yml', 'utf8');
|
|
|
|
return yaml.load(ymlFile);
|
|
|
|
|
|
|
|
} else if(checkFileExists('config-default.yml')) {
|
|
|
|
// config-default.yml exists, load it
|
|
|
|
log(colors.bold(colors.cyan('config.yml')), 'does not exist, loading', colors.bold(colors.cyan('config-default.yml')));
|
|
|
|
let ymlFile = fs.readFileSync('config-default.yml', 'utf8');
|
|
|
|
return yaml.load(ymlFile);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// Exit if config.yml & config-default.yml do not exist
|
|
|
|
log('Exiting process, no config file exists.');
|
|
|
|
log('Error Code:', err.code);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the "dist" folder
|
|
|
|
// This happens every time a build starts
|
|
|
|
function clean(done) {
|
|
|
|
rimraf(PATHS.dist, done);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy files out of the assets folder
|
|
|
|
// This task skips over the "images", "js", and "scss" folders, which are parsed separately
|
|
|
|
function copy() {
|
|
|
|
return gulp.src(PATHS.assets)
|
|
|
|
.pipe(gulp.dest(PATHS.dist + '/assets'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compile Sass into CSS
|
|
|
|
// In production, the CSS is compressed
|
|
|
|
function sass() {
|
|
|
|
return gulp.src(['src/assets/scss/app.scss','src/assets/scss/editor.scss'])
|
|
|
|
.pipe($.sourcemaps.init())
|
|
|
|
.pipe($.sass({
|
|
|
|
includePaths: PATHS.sass
|
|
|
|
})
|
|
|
|
.on('error', $.sass.logError))
|
|
|
|
.pipe($.autoprefixer({
|
2021-10-27 13:20:27 +02:00
|
|
|
// browsers: COMPATIBILITY
|
|
|
|
// browserslist: COMPATIBILITY
|
|
|
|
overrideBrowserslist: COMPATIBILITY
|
2021-02-18 15:27:46 +01:00
|
|
|
}))
|
|
|
|
|
|
|
|
.pipe($.if(PRODUCTION, $.cleanCss({ compatibility: 'ie9' })))
|
|
|
|
.pipe($.if(!PRODUCTION, $.sourcemaps.write()))
|
|
|
|
.pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev()))
|
|
|
|
.pipe(gulp.dest(PATHS.dist + '/assets/css'))
|
|
|
|
.pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev.manifest()))
|
|
|
|
.pipe(gulp.dest(PATHS.dist + '/assets/css'))
|
|
|
|
.pipe(browser.reload({ stream: true }));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Combine JavaScript into one file
|
|
|
|
// In production, the file is minified
|
2021-10-27 13:20:27 +02:00
|
|
|
// other options in ./webpack.config.js
|
2021-02-18 15:27:46 +01:00
|
|
|
const webpack = {
|
|
|
|
config: {
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /.js$/,
|
|
|
|
exclude: /node_modules(?![\\\/]foundation-sites)/,
|
2021-10-27 13:20:27 +02:00
|
|
|
use: {
|
|
|
|
loader: 'babel-loader',
|
|
|
|
},
|
2021-02-18 15:27:46 +01:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
externals: {
|
|
|
|
jquery: 'jQuery',
|
|
|
|
},
|
2021-10-27 13:20:27 +02:00
|
|
|
// https://webpack.js.org/configuration/mode/
|
|
|
|
mode: 'production',
|
2021-02-18 15:27:46 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
changeHandler(err, stats) {
|
|
|
|
log('[webpack]', stats.toString({
|
|
|
|
colors: true,
|
|
|
|
}));
|
|
|
|
|
|
|
|
browser.reload();
|
|
|
|
},
|
|
|
|
|
|
|
|
build() {
|
|
|
|
return gulp.src(PATHS.entries)
|
|
|
|
.pipe(named())
|
|
|
|
.pipe(webpackStream(webpack.config, webpack2))
|
|
|
|
.pipe($.if(PRODUCTION, $.uglify()
|
|
|
|
.on('error', e => { console.log(e); }),
|
|
|
|
))
|
|
|
|
.pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev()))
|
|
|
|
.pipe(gulp.dest(PATHS.dist + '/assets/js'))
|
|
|
|
.pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev.manifest()))
|
|
|
|
.pipe(gulp.dest(PATHS.dist + '/assets/js'));
|
|
|
|
},
|
|
|
|
|
|
|
|
watch() {
|
|
|
|
const watchConfig = Object.assign(webpack.config, {
|
|
|
|
watch: true,
|
|
|
|
devtool: 'inline-source-map',
|
|
|
|
});
|
|
|
|
|
|
|
|
return gulp.src(PATHS.entries)
|
|
|
|
.pipe(named())
|
|
|
|
.pipe(webpackStream(watchConfig, webpack2, webpack.changeHandler)
|
|
|
|
.on('error', (err) => {
|
|
|
|
log('[webpack:error]', err.toString({
|
|
|
|
colors: true,
|
|
|
|
}));
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
.pipe(gulp.dest(PATHS.dist + '/assets/js'));
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
gulp.task('webpack:build', webpack.build);
|
|
|
|
gulp.task('webpack:watch', webpack.watch);
|
|
|
|
|
2021-03-18 10:49:47 +01:00
|
|
|
|
|
|
|
// Include fontawesome
|
|
|
|
// https://stackoverflow.com/questions/49195144/add-font-awesome-to-gulp-project-correctly#51491927
|
|
|
|
gulp.task('icons', function() {
|
|
|
|
return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/*')
|
|
|
|
.pipe(gulp.dest(dist+'/assets/webfonts/'));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2021-02-18 15:27:46 +01:00
|
|
|
// Copy images to the "dist" folder
|
|
|
|
// In production, the images are compressed
|
|
|
|
function images() {
|
|
|
|
return gulp.src('src/assets/images/**/*')
|
|
|
|
.pipe($.if(PRODUCTION, $.imagemin([
|
|
|
|
$.imagemin.jpegtran({
|
|
|
|
progressive: true,
|
|
|
|
}),
|
|
|
|
$.imagemin.optipng({
|
|
|
|
optimizationLevel: 5,
|
|
|
|
}),
|
|
|
|
$.imagemin.gifsicle({
|
|
|
|
interlaced: true,
|
|
|
|
}),
|
|
|
|
$.imagemin.svgo({
|
|
|
|
plugins: [
|
|
|
|
{cleanupAttrs: true},
|
|
|
|
{removeComments: true},
|
|
|
|
]
|
|
|
|
})
|
|
|
|
])))
|
|
|
|
.pipe(gulp.dest(PATHS.dist + '/assets/images'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a .zip archive of the theme
|
|
|
|
function archive() {
|
|
|
|
// var time = dateFormat(new Date(), "yyyy-mm-dd_HH-MM");
|
|
|
|
var time = dateFormat(new Date(), "yyyy-mm-dd");
|
|
|
|
var pkg = JSON.parse(fs.readFileSync('./package.json'));
|
|
|
|
var title = pkg.name + '_' + time + '.zip';
|
|
|
|
|
|
|
|
return gulp.src(PATHS.package)
|
|
|
|
.pipe($.zip(title))
|
|
|
|
.pipe(gulp.dest('packaged'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// PHP Code Sniffer task
|
|
|
|
gulp.task('phpcs', function() {
|
|
|
|
return gulp.src(PATHS.phpcs)
|
|
|
|
.pipe($.phpcs({
|
|
|
|
bin: 'wpcs/vendor/bin/phpcs',
|
|
|
|
standard: './codesniffer.ruleset.xml',
|
|
|
|
showSniffCode: true,
|
|
|
|
}))
|
|
|
|
.pipe($.phpcs.reporter('log'));
|
|
|
|
});
|
|
|
|
|
|
|
|
// PHP Code Beautifier task
|
|
|
|
gulp.task('phpcbf', function () {
|
|
|
|
return gulp.src(PATHS.phpcs)
|
|
|
|
.pipe($.phpcbf({
|
|
|
|
bin: 'wpcs/vendor/bin/phpcbf',
|
|
|
|
standard: './codesniffer.ruleset.xml',
|
|
|
|
warningSeverity: 0
|
|
|
|
}))
|
|
|
|
.on('error', log)
|
|
|
|
.pipe(gulp.dest('.'));
|
|
|
|
});
|
|
|
|
|
|
|
|
// Start BrowserSync to preview the site in
|
|
|
|
function server(done) {
|
|
|
|
browser.init({
|
|
|
|
proxy: BROWSERSYNC.url,
|
|
|
|
|
|
|
|
ui: {
|
2021-10-26 14:18:09 +02:00
|
|
|
port: 8080
|
2021-02-18 15:27:46 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reload the browser with BrowserSync
|
|
|
|
function reload(done) {
|
|
|
|
browser.reload();
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Watch for changes to static assets, pages, Sass, and JavaScript
|
|
|
|
function watch() {
|
|
|
|
gulp.watch(PATHS.assets, copy);
|
|
|
|
gulp.watch('src/assets/scss/**/*.scss', sass)
|
|
|
|
.on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.'))
|
|
|
|
.on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.'));
|
|
|
|
gulp.watch('**/*.php', reload)
|
|
|
|
.on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.'))
|
|
|
|
.on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.'));
|
|
|
|
gulp.watch('src/assets/images/**/*', gulp.series(images, reload));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the "dist" folder by running all of the below tasks
|
|
|
|
gulp.task('build',
|
|
|
|
gulp.series(clean, gulp.parallel(sass, 'webpack:build', images, copy)));
|
|
|
|
|
|
|
|
// Build the site, run the server, and watch for file changes
|
|
|
|
gulp.task('default',
|
|
|
|
gulp.series('build', server, gulp.parallel('webpack:watch', watch)));
|
|
|
|
|
|
|
|
// Package task
|
|
|
|
gulp.task('package',
|
|
|
|
gulp.series('build', archive));
|