Created
July 20, 2019 16:27
-
-
Save caraya/947efecce775ec0dacad5b22155e48d0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable require-jsdoc */ | |
/* eslint-disable valid-jsdoc */ | |
'use strict'; | |
// Require Gulp first | |
const gulp = require('gulp'); | |
// packageJson = require('./package.json'), | |
// Load plugins | |
const $ = require('gulp-load-plugins')({ | |
lazy: true, | |
}); | |
// Static Web Server stuff | |
const browserSync = require('browser-sync'); | |
// postcss | |
const postcss = require('gulp-postcss'); | |
const autoprefixer = require('autoprefixer'); | |
// SASS | |
const sass = require('gulp-sass'); | |
const sourcemaps = require('gulp-sourcemaps'); | |
// Critical CSS | |
const critical = require('critical'); | |
// Imagemin and Plugins | |
const imagemin = require('gulp-imagemin'); | |
// const imageminMozjpeg = require('imagemin-mozjpeg'); | |
const imageminGuetzli = require('imagemin-guetzli'); | |
const imageminWebp = require('imagemin-webp'); | |
// Utilities | |
const del = require('del'); | |
const plumber = require('gulp-plumber'); | |
/** | |
* @name sass | |
* @description SASS conversion task to produce development css with | |
* expanded syntax. | |
* | |
* We run this task agains Ruby SASS, not lib SASS. As such it requires | |
* the SASS Gem to be installed | |
* | |
* @see {@link http://sass-lang.com|SASS} | |
* @see {@link http://sass-compatibility.github.io/|SASS Feature Compatibility} | |
*/ | |
function createSass() { | |
return gulp.src('./sass/**/*.scss') | |
.pipe(plumber({ | |
handleError: function(err) { | |
console.log(err); | |
this.emit('end'); | |
}, | |
})) | |
.pipe(sourcemaps.init()) | |
.pipe(sass.sync({ | |
outputStyle: 'expanded', | |
}).on('error', sass.logError)) | |
.pipe(sourcemaps.write('./css')) | |
.pipe(plumber.stop()) | |
.pipe(gulp.dest('./css')); | |
}; | |
/** | |
* @name processCSS | |
* | |
* @description Run autoprefixer and cleanCSS on the CSS files under src/css | |
* | |
* Moved from gulp-autoprefixer to postcss. It may open other options in | |
* the future like cssnano to compress the files | |
* | |
* @see {@link https://github.com/postcss/autoprefixer|autoprefixer} | |
*/ | |
function processCSS() { | |
// What processors/plugins to use with PostCSS | |
const PROCESSORS = [autoprefixer({ | |
browsers: [ | |
'ie >= 10', | |
'ie_mob >= 10', | |
'ff >= 30', | |
'chrome >= 34', | |
'safari >= 7', | |
'opera >= 23', | |
'ios >= 7', | |
'android >= 4.4', | |
'bb >= 10', | |
], | |
})]; | |
return gulp | |
.src('css/**/*.css') | |
.pipe($.sourcemaps.init()) | |
.pipe(postcss(PROCESSORS)) | |
.pipe($.sourcemaps.write('.')) | |
.pipe(gulp.dest('css')) | |
.pipe($.size({ | |
pretty: true, | |
title: 'processCSS', | |
})); | |
}; | |
// Generate & Inline Critical-path CSS | |
function criticalCSS() { | |
return gulp.src('src/*.html') | |
.pipe(critical({ | |
base: 'src/', | |
inline: true, | |
css: ['src/css/main.css'], | |
minify: true, | |
extract: false, | |
ignore: ['font-face'], | |
dimensions: [{ | |
width: 320, | |
height: 480, | |
}, { | |
width: 768, | |
height: 1024, | |
}, { | |
width: 1280, | |
height: 960, | |
}], | |
})) | |
.pipe($.size({ | |
pretty: true, | |
title: 'Critical', | |
})) | |
.pipe(gulp.dest('docs')); | |
}; | |
/** | |
* @name babel7 | |
* @description Transpiles ES6 to ES5 using Babel. As Node and browsers | |
* support more of the spec natively this will move to supporting | |
* ES2016 and later transpilation | |
* | |
* It requires the `babel` and the `babel-env` plugin | |
* | |
* @see {@link http://babeljs.io/|Babel} | |
* @see {@link http://babeljs.io/docs/learn-es2015/|Learn ES2015} | |
* @see {@link http://www.ecma-international.org/ecma-262/6.0/|ECMAScript 2015 specification} | |
*/ | |
function babel7() { | |
gulp.src('src/js/**/*.js') | |
.pipe(babel({ | |
presets: ['@babel/preset-env'], | |
})) | |
.pipe(gulp.dest('dist')); | |
} | |
/** | |
* @name eslint | |
* @description Runs eslint on all javascript files | |
*/ | |
function eslint() { | |
return gulp.src([ | |
'src/js/**/*.js', | |
]) | |
.pipe(eslint()) | |
.pipe(eslint.format()) | |
.pipe(eslint.failAfterError()); | |
}; | |
/** | |
* @name imagemin | |
* @description Reduces image file sizes. Doubly important if | |
* we'll choose to play with responsive images. | |
* | |
* Imagemin will compress jpg (using mozilla's mozjpeg), | |
* SVG (using SVGO) GIF and PNG images but WILL NOT create multiple | |
* versions for use with responsive images | |
* | |
* @see {@link https://github.com/postcss/autoprefixer|Autoprefixer} | |
* @see {@link processImages} | |
*/ | |
function imageminProcess() { | |
return gulp.src('images/originals/**/*.{jpg,png,gif.svg}') | |
.pipe($.imagemin([ | |
imagemin.gifsicle({interlaced: true}), | |
imagemin.optipng({optimizationLevel: 5}), | |
imagemin.svgo({ | |
plugins: [ | |
{removeViewBox: false}, | |
{cleanupIDs: false}, | |
], | |
}), | |
imageminMozjpeg({quality: 75}), | |
imageminWebp({quality: 75}), | |
])) | |
.pipe(gulp.dest('images')) | |
.pipe($.size({ | |
pretty: true, | |
title: 'imagemin', | |
})); | |
}; | |
// Guetzli is an experimental jpeg encoder from Google. | |
// I'm running it as a separate task to test whether it | |
// works better than mozjpeg and under what circumstances | |
function guetzli() { | |
gulp.src('src/images/originals/**/*.jpg') | |
.pipe(imagemin([ | |
imageminGuetzli({ | |
quality: 85, | |
}), | |
])) | |
.pipe(gulp.dest('dist')); | |
} | |
/** | |
* @name clean | |
* @description deletes specified files | |
*/ | |
function clean() { | |
return del.sync([ | |
'docs', | |
]); | |
}; | |
// BrowserSync | |
function server(done) { | |
browserSync.init({ | |
server: { | |
baseDir: './_site/', | |
}, | |
port: 3000, | |
}); | |
done(); | |
} | |
// BrowserSync Reload | |
function browserSyncReload(done) { | |
browsersync.reload(); | |
done(); | |
} | |
function copyFonts() { | |
return gulp.src([ | |
'fonts/Roboto-min-VF.woff2', | |
'fonts/AvenirNext_Variable.woff2', | |
'fonts/SourceSerifVariable-Roman.ttf.woff2', | |
'fonts/Roboto-min-VF-subset-demo21.woff2', | |
'fonts/jost-VF.woff2', | |
'fonts/WorkSans-Regular.woff2', | |
'fonts/WorkSans-Bold.woff2', | |
'fonts/MetaVariableDemo-Set.woff2', | |
'fonts/NeueMontreal-Bold.woff', | |
'fonts/NeueMontreal-Bold.woff2', | |
'fonts/Fuji-Bold.woff', | |
'fonts/Fuji-Bold.woff2', | |
'fonts/Fuji-Light.woff', | |
'fonts/Fuji-Light.woff2', | |
'fonts/skolarlatinweb-light-webfont.woff', | |
'fonts/skolarlatinweb-light-webfont.woff2', | |
'fonts/skolarlatinweb-lightitalic-webfont.woff', | |
'fonts/skolarlatinweb-lightitalic-webfont.woff2', | |
'fonts/skolarlatinweb-semibold-webfont.woff', | |
'fonts/skolarlatinweb-semibold-webfont.woff2', | |
'fonts/skolarlatinweb-semibolditalic-webfont.woff', | |
'fonts/skolarlatinweb-semibolditalic-webfont.woff2', | |
'fonts/3849CD_3_0.woff2', | |
'fonts/3849CD_3_0.woff', | |
'fonts/3849CD_2_0.woff2', | |
'fonts/3849CD_2_0.woff', | |
'fonts/3849CD_1_0.woff2', | |
'fonts/3849CD_1_0.woff', | |
'fonts/3849CD_0_0.woff2', | |
'fonts/3849CD_0_0.woff', | |
'fonts/MarvinVisionsBig-Bold.woff', | |
'fonts/MarvinVisionsBig-Bold.woff2', | |
'fonts/Lekton-Bold.woff2', | |
'fonts/Lekton-Italic.woff2', | |
'fonts/Lekton-Regular.woff2', | |
'fonts/Lekton-Bold.woff', | |
'fonts/Lekton-Italic.woff', | |
'fonts/Lekton-Regular.woff', | |
'fonts/CutiveMono-Regular.woff', | |
'fonts/CutiveMono-Regular.woff2', | |
'fonts/hermann-bold-italic.woff', | |
'fonts/hermann-bold-italic.woff2', | |
'fonts/hermann-bold.woff', | |
'fonts/hermann-bold.woff2', | |
'fonts/hermann-italic.woff', | |
'fonts/hermann-italic.woff2', | |
'fonts/hermann-regular.woff', | |
'fonts/hermann-regular.woff2', | |
'fonts/RecoletaBold.woff2', | |
'fonts/RecoletaBold.woff', | |
'fonts/RecoletaMedium.woff2', | |
'fonts/RecoletaMedium.woff', | |
]) | |
.pipe(gulp.dest('./docs/fonts')); | |
}; | |
function copyEverything() { | |
return gulp.src([ | |
'*.html', | |
'css/**/*.css', | |
'js/**/*.js', | |
'!js/sw.js', | |
'sw.js', | |
'favicon.ico', | |
'images/**/*.{png,jpg,jpeg,webp,gif.svg}', | |
'manifest.json', | |
'pages/*.html', | |
'!scratch-sources/', | |
'!sass/**/*', | |
'!node_modules/**/*', | |
'!workbox-config.js', | |
], { | |
base: './', | |
}) | |
.pipe(gulp.dest('./docs')); | |
}; | |
/** | |
* @name defaultProcess | |
* @description uses clean, processCSS, build-template, imagemin | |
* to build the sass stylesheets into CSS for the experiments | |
*/ | |
function defaultProcess() { | |
gulp.series('sass', 'processCSS', 'clean', 'copy:fonts', 'copy:all'); | |
}; | |
// exports | |
exports.sass = createSass; | |
exports.babel = babel7; | |
exports.processCSS = processCSS; | |
exports.critical = criticalCSS; | |
exports.eslint = eslint; | |
exports.imagemin = imageminProcess; | |
exports.guetzli = guetzli; | |
exports.clean = clean; | |
exports.browserSync = server; | |
exports.bsReload = browserSyncReload; | |
exports.copyFonts = copyFonts; | |
exports.copyAll = copyEverything; | |
exports.default = defaultProcess; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment