2015-06-07 00:33:03 +02:00
|
|
|
// load plugins
|
|
|
|
var $ = require('gulp-load-plugins')();
|
|
|
|
|
|
|
|
// manually require modules that won"t get picked up by gulp-load-plugins
|
|
|
|
var gulp = require('gulp'),
|
|
|
|
del = require('del'),
|
|
|
|
nib = require('nib'),
|
|
|
|
merge = require('merge-stream'),
|
|
|
|
pkg = require('./package.json');
|
|
|
|
|
|
|
|
// Temporary solution until gulp 4
|
|
|
|
// https://github.com/gulpjs/gulp/issues/355
|
|
|
|
var runSequence = require('run-sequence');
|
|
|
|
|
2015-06-07 20:53:49 +02:00
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
// Terminal Banner
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
console.log("");
|
|
|
|
console.log(" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
|
|
|
|
console.log("");
|
|
|
|
console.log(" (o) Just what do you think you're doing, Matthias? ");
|
|
|
|
console.log("");
|
|
|
|
console.log(" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
|
|
|
|
console.log("");
|
|
|
|
|
2015-06-07 00:33:03 +02:00
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
// Config
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2015-06-08 19:29:04 +02:00
|
|
|
// paths
|
2015-06-07 00:33:03 +02:00
|
|
|
var src = '_src',
|
2015-06-07 03:11:46 +02:00
|
|
|
dist = '_site',
|
|
|
|
cdn = 'https://d2jlreog722xe2.cloudfront.net';
|
2015-06-07 00:33:03 +02:00
|
|
|
|
2015-06-08 19:29:04 +02:00
|
|
|
// icons
|
|
|
|
var icons = {
|
|
|
|
entypo: {
|
2015-06-08 22:27:39 +02:00
|
|
|
src: src + '/_assets/icons/entypo/',
|
2015-06-08 19:29:04 +02:00
|
|
|
dist: dist + '/assets/img/',
|
|
|
|
prefix: 'entypo-',
|
2015-06-08 19:40:53 +02:00
|
|
|
icons: [
|
2015-06-08 23:10:21 +02:00
|
|
|
'twitter', 'facebook', 'google+', 'magnifying-glass', 'menu', 'rss', 'link', 'arrow-with-circle-down', 'forward', 'heart', 'info-with-circle', 'infinity', 'github', 'chevron-right', 'chevron-left'
|
2015-06-08 19:40:53 +02:00
|
|
|
]
|
2015-06-08 19:29:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SVG sprite
|
|
|
|
spriteConfig = {
|
2015-06-08 22:03:16 +02:00
|
|
|
dest: dist + '/assets/img/',
|
2015-06-08 19:29:04 +02:00
|
|
|
mode: {
|
|
|
|
symbol: {
|
|
|
|
dest: './',
|
2015-06-08 21:22:09 +02:00
|
|
|
sprite: 'sprite.svg'
|
2015-06-08 19:29:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// code banner
|
2015-06-07 00:33:03 +02:00
|
|
|
var banner = [
|
|
|
|
'/**',
|
2015-06-07 03:11:46 +02:00
|
|
|
' ** <%= pkg.name %> v<%= pkg.version %>',
|
|
|
|
' ** <%= pkg.description %>',
|
2015-06-08 10:53:12 +02:00
|
|
|
' ** <%= pkg.homepage %>',
|
|
|
|
' **',
|
2015-06-07 03:11:46 +02:00
|
|
|
' ** <%= pkg.author.name %> <<%= pkg.author.email %>>',
|
2015-06-08 10:53:12 +02:00
|
|
|
' **',
|
|
|
|
' ** YOU EARNED THE GEEK ACHIEVEMENT ',
|
|
|
|
' ** FOR LOOKING AT MY SOURCE ',
|
|
|
|
' **',
|
|
|
|
' ** But because of all the minimizing and caching ',
|
|
|
|
' ** going on you better check out the code on ',
|
|
|
|
' ** github ',
|
|
|
|
' ** ',
|
|
|
|
' ** <%= pkg.repository.url %> ',
|
2015-06-07 00:33:03 +02:00
|
|
|
' **/',
|
|
|
|
''
|
|
|
|
].join('\n');
|
|
|
|
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
// Tasks
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
//
|
|
|
|
// Delete build artifacts
|
|
|
|
//
|
|
|
|
gulp.task('clean', function(cb) {
|
|
|
|
return del([
|
|
|
|
dist + '/**/*',
|
2015-06-07 20:53:49 +02:00
|
|
|
dist + '/.*', // delete all hidden files
|
2015-06-07 00:33:03 +02:00
|
|
|
'!' + dist + '/media/**'
|
|
|
|
], cb);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Jekyll
|
|
|
|
//
|
2015-06-08 19:29:04 +02:00
|
|
|
gulp.task('jekyll', function(cb) {
|
2015-06-07 00:33:03 +02:00
|
|
|
var spawn = require('child_process').spawn;
|
2015-06-08 19:29:04 +02:00
|
|
|
var jekyll = spawn('jekyll', ['build', '--drafts', '--future'], {
|
|
|
|
stdio: 'inherit'
|
|
|
|
});
|
2015-06-07 03:11:46 +02:00
|
|
|
|
|
|
|
jekyll.on('exit', function(code) {
|
2015-06-08 19:29:04 +02:00
|
|
|
cb(code === 0 ? null : 'ERROR: Jekyll process exited with code: ' + code);
|
2015-06-07 03:11:46 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-06-08 19:29:04 +02:00
|
|
|
gulp.task('jekyll:production', function(cb) {
|
2015-06-07 03:11:46 +02:00
|
|
|
var spawn = require('child_process').spawn;
|
2015-06-08 19:29:04 +02:00
|
|
|
var jekyll = spawn('jekyll', ['build', '--lsi'], {
|
|
|
|
stdio: 'inherit'
|
|
|
|
});
|
2015-06-07 00:33:03 +02:00
|
|
|
|
|
|
|
jekyll.on('exit', function(code) {
|
2015-06-08 19:29:04 +02:00
|
|
|
cb(code === 0 ? null : 'ERROR: Jekyll process exited with code: ' + code);
|
2015-06-07 00:33:03 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Styles
|
|
|
|
//
|
|
|
|
gulp.task('css', function() {
|
|
|
|
return gulp.src([
|
|
|
|
src + '/_assets/styl/kremalicious3.styl',
|
|
|
|
src + '/_assets/styl/poststyle-2300.styl'
|
|
|
|
])
|
2015-06-08 19:29:04 +02:00
|
|
|
.pipe($.stylus({
|
|
|
|
use: [nib()],
|
|
|
|
'include css': true
|
|
|
|
}))
|
|
|
|
.pipe($.autoprefixer({
|
|
|
|
browsers: 'last 2 versions'
|
|
|
|
}))
|
|
|
|
.pipe($.combineMq({
|
|
|
|
beautify: false
|
|
|
|
}))
|
2015-06-07 00:33:03 +02:00
|
|
|
// .pipe($.uncss({
|
|
|
|
// html: [dist + '/**/*.html'],
|
|
|
|
// ignore: ['.in', '.collapsing']
|
|
|
|
// }))
|
|
|
|
.pipe($.cssmin())
|
2015-06-08 19:29:04 +02:00
|
|
|
.pipe($.rename({
|
|
|
|
suffix: '.min'
|
|
|
|
}))
|
|
|
|
.pipe($.header(banner, {
|
|
|
|
pkg: pkg
|
|
|
|
}))
|
2015-06-07 00:33:03 +02:00
|
|
|
.pipe(gulp.dest(dist + '/assets/css/'))
|
|
|
|
.pipe($.connect.reload());
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Scripts
|
|
|
|
//
|
|
|
|
|
|
|
|
// Libraries
|
|
|
|
gulp.task('js-libraries', function() {
|
2015-06-10 14:45:27 +02:00
|
|
|
var picturefill = gulp.src('node_modules/picturefill/dist/picturefill.js');
|
2015-06-07 00:33:03 +02:00
|
|
|
|
2015-06-10 14:45:27 +02:00
|
|
|
return merge(picturefill)
|
2015-06-07 03:11:46 +02:00
|
|
|
.pipe($.uglify())
|
2015-06-08 19:29:04 +02:00
|
|
|
.pipe($.rename({
|
|
|
|
suffix: '.min'
|
|
|
|
}))
|
2015-06-07 00:33:03 +02:00
|
|
|
.pipe(gulp.dest(dist + '/assets/js/'))
|
|
|
|
});
|
|
|
|
|
|
|
|
// Project js
|
|
|
|
gulp.task('js-project', function() {
|
|
|
|
return gulp.src([
|
2015-06-08 21:42:44 +02:00
|
|
|
'node_modules/webcomponents.js/CustomElements.js',
|
|
|
|
'node_modules/svg4everybody/svg4everybody.js',
|
2015-06-10 14:45:27 +02:00
|
|
|
'node_modules/jquery/dist/jquery.js',
|
2015-06-08 19:29:04 +02:00
|
|
|
'node_modules/masonry-layout/dist/masonry.pkgd.js',
|
|
|
|
'node_modules/imagesloaded/imagesloaded.js',
|
|
|
|
'bower_components/simple-jekyll-search/dest/jekyll-search.js',
|
|
|
|
'bower_components/time-elements/time-elements.js',
|
|
|
|
src + '/_assets/js/*.js'
|
|
|
|
])
|
|
|
|
.pipe($.uglify())
|
|
|
|
.pipe($.concat('kremalicious3.min.js'))
|
|
|
|
.pipe($.header(banner, {
|
|
|
|
pkg: pkg
|
|
|
|
}))
|
|
|
|
.pipe(gulp.dest(dist + '/assets/js/'))
|
|
|
|
.pipe($.connect.reload());
|
2015-06-07 00:33:03 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Collect all script tasks
|
|
|
|
gulp.task('js', ['js-libraries', 'js-project']);
|
|
|
|
|
|
|
|
|
2015-06-08 19:29:04 +02:00
|
|
|
//
|
|
|
|
// Icons
|
|
|
|
//
|
2015-06-08 21:22:09 +02:00
|
|
|
gulp.task('icons', function() {
|
2015-06-08 19:29:04 +02:00
|
|
|
var iconset = icons.entypo
|
|
|
|
|
|
|
|
// Iterate through the icon set array
|
|
|
|
icons.entypo.icons.forEach(function(icon, i, icons) {
|
|
|
|
icons[i] = iconset.src + icon + '.svg';
|
|
|
|
});
|
|
|
|
|
|
|
|
return gulp.src(iconset.icons)
|
2015-06-08 21:22:09 +02:00
|
|
|
.pipe($.rename({ prefix: iconset.prefix }))
|
2015-06-08 19:29:04 +02:00
|
|
|
.pipe(gulp.dest(iconset.dist))
|
|
|
|
.pipe($.filter('**/*.svg'))
|
2015-06-09 22:56:01 +02:00
|
|
|
.pipe($.imagemin({ svgoPlugins: [{ removeViewBox: false }] }))
|
2015-06-08 19:29:04 +02:00
|
|
|
.pipe($.svgSprite(spriteConfig))
|
|
|
|
.pipe(gulp.dest(iconset.dist))
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Generate SVG fallbacks
|
|
|
|
//
|
|
|
|
gulp.task('svg-fallbacks', function() {
|
|
|
|
return gulp.src(dist + '/assets/img/*.svg')
|
|
|
|
.pipe($.svg2png())
|
|
|
|
.pipe(gulp.dest(dist + '/assets/img/png/'))
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2015-06-07 00:33:03 +02:00
|
|
|
//
|
|
|
|
// Copy images
|
|
|
|
//
|
|
|
|
gulp.task('images', function() {
|
2015-06-08 19:29:04 +02:00
|
|
|
return gulp.src([src + '/_assets/img/**/*', '!' + src + '/_assets/img/entypo/**/*'])
|
|
|
|
.pipe(gulp.dest(dist + '/assets/img/'))
|
2015-06-07 00:33:03 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Copy fonts
|
|
|
|
//
|
|
|
|
gulp.task('fonts', function() {
|
2015-06-08 19:29:04 +02:00
|
|
|
return gulp.src(src + '/_assets/fonts/**/*')
|
|
|
|
.pipe(gulp.dest(dist + '/assets/fonts/'))
|
2015-06-07 00:33:03 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Copy media
|
|
|
|
//
|
|
|
|
gulp.task('media', function() {
|
2015-06-08 19:29:04 +02:00
|
|
|
return gulp.src(src + '/_media/**/*')
|
|
|
|
.pipe(gulp.dest(dist + '/media/'))
|
2015-06-07 00:33:03 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//
|
2015-06-10 23:39:55 +02:00
|
|
|
// Gzip all the things
|
2015-06-07 00:33:03 +02:00
|
|
|
//
|
2015-06-10 23:39:55 +02:00
|
|
|
gulp.task('optimize:gzip', function() {
|
|
|
|
return gulp.src(dist + '/**/*.{html,xml,json,css,js}')
|
|
|
|
.pipe($.gzip())
|
|
|
|
.pipe(gulp.dest(dist))
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Optimize HTML
|
|
|
|
//
|
|
|
|
gulp.task('optimize:html', function() {
|
|
|
|
return gulp.src(dist + '/**/*.html')
|
|
|
|
.pipe($.htmlmin({
|
|
|
|
collapseWhitespace: true,
|
|
|
|
conservativeCollapse: true,
|
|
|
|
removeComments: true,
|
|
|
|
useShortDoctype: true,
|
|
|
|
collapseBooleanAttributes: true,
|
|
|
|
removeRedundantAttributes: true,
|
|
|
|
removeEmptyAttributes: true,
|
|
|
|
removeEmptyAttributes: true
|
|
|
|
}))
|
|
|
|
.pipe(gulp.dest(dist));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Optimize images
|
|
|
|
//
|
|
|
|
gulp.task('optimize:images', function() {
|
2015-06-07 03:38:58 +02:00
|
|
|
return gulp.src([
|
2015-06-10 23:39:55 +02:00
|
|
|
dist + '/**/*.{png,jpg,jpeg,gif,svg,webp}',
|
2015-06-07 03:43:24 +02:00
|
|
|
'!' + dist + '/media/**/*'
|
2015-06-07 03:38:58 +02:00
|
|
|
])
|
2015-06-07 03:11:46 +02:00
|
|
|
.pipe($.cache($.imagemin({
|
2015-06-07 03:43:24 +02:00
|
|
|
optimizationLevel: 5, // png
|
2015-06-08 19:29:04 +02:00
|
|
|
progressive: true, // jpg
|
|
|
|
interlaced: true, // gif
|
|
|
|
multipass: true, // svg
|
2015-06-08 21:22:09 +02:00
|
|
|
svgoPlugins: [{ removeViewBox: false }]
|
2015-06-07 03:11:46 +02:00
|
|
|
})))
|
2015-06-07 00:33:03 +02:00
|
|
|
.pipe(gulp.dest(dist));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Revision static assets
|
|
|
|
//
|
2015-06-08 19:29:04 +02:00
|
|
|
gulp.task('revision', function() {
|
2015-06-07 20:53:49 +02:00
|
|
|
return gulp.src(dist + '/assets/**/*.{css,js,png,jpg,jpeg,svg,eot,ttf,woff}')
|
2015-06-07 00:33:03 +02:00
|
|
|
.pipe($.rev())
|
|
|
|
.pipe(gulp.dest(dist + '/assets/'))
|
|
|
|
// output rev manifest for next replace task
|
|
|
|
.pipe($.rev.manifest())
|
|
|
|
.pipe(gulp.dest(dist + '/assets/'));
|
|
|
|
});
|
|
|
|
|
2015-06-07 20:53:49 +02:00
|
|
|
|
2015-06-07 00:33:03 +02:00
|
|
|
//
|
|
|
|
// Replace all links to assets in files
|
|
|
|
// from a manifest file
|
|
|
|
//
|
|
|
|
gulp.task('revision-replace', function() {
|
|
|
|
|
|
|
|
var manifest = gulp.src(dist + '/assets/rev-manifest.json');
|
|
|
|
|
2015-06-07 20:53:49 +02:00
|
|
|
return gulp.src(dist + '/**/*.{html,xml,txt,json,css,js,png,jpg,jpeg,svg,eot,ttf,woff}')
|
2015-06-08 21:22:09 +02:00
|
|
|
.pipe($.revReplace({ manifest: manifest }))
|
2015-06-07 00:33:03 +02:00
|
|
|
.pipe(gulp.dest(dist));
|
|
|
|
});
|
|
|
|
|
2015-06-07 03:11:46 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// CDN url injection
|
|
|
|
//
|
2015-06-08 19:29:04 +02:00
|
|
|
gulp.task('cdn', function() {
|
2015-06-08 21:22:09 +02:00
|
|
|
return gulp.src([dist + '/**/*.html', dist + '/assets/css/*.css'], { base: dist })
|
2015-06-07 20:53:49 +02:00
|
|
|
.pipe($.replace('/assets/css/', cdn + '/assets/css/'))
|
2015-06-07 03:11:46 +02:00
|
|
|
.pipe($.replace('/assets/js/', cdn + '/assets/js/'))
|
|
|
|
.pipe($.replace('/assets/img/', cdn + '/assets/img/'))
|
|
|
|
.pipe($.replace('/media/', cdn + '/media/'))
|
|
|
|
.pipe($.replace('https://kremalicious.com' + cdn + '/media/', 'https://kremalicious.com/media/'))
|
|
|
|
.pipe($.replace('../', cdn + '/assets/'))
|
|
|
|
.pipe(gulp.dest(dist));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2015-06-07 00:33:03 +02:00
|
|
|
//
|
|
|
|
// Dev Server
|
|
|
|
//
|
|
|
|
gulp.task('connect', function() {
|
|
|
|
return $.connect.server({
|
|
|
|
root: [dist],
|
|
|
|
livereload: true,
|
|
|
|
port: 1337
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
//
|
|
|
|
// Watch task
|
|
|
|
//
|
|
|
|
gulp.task('watch', function() {
|
|
|
|
gulp.watch([src + '/_assets/styl/**/*.styl'], ['css']);
|
|
|
|
gulp.watch([src + '/_assets/js/*.js'], ['js-project']);
|
2015-06-08 19:29:04 +02:00
|
|
|
gulp.watch([src + '/_assets/img/**/*.{png,jpg,jpeg,gif}'], ['images']);
|
|
|
|
gulp.watch([src + '/_assets/img/**/*.{svg}'], ['icons']);
|
2015-06-08 10:53:12 +02:00
|
|
|
gulp.watch([src + '/_media/**/*'], ['media']);
|
|
|
|
gulp.watch([src + '/**/*.{html,xml,json,txt}'], ['jekyll-build']);
|
2015-06-07 00:33:03 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
// Task sequences
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2015-06-08 10:53:12 +02:00
|
|
|
gulp.task('jekyll-build', function(cb) {
|
|
|
|
runSequence(
|
|
|
|
'jekyll',
|
2015-06-08 21:22:09 +02:00
|
|
|
['css', 'js', 'images', 'fonts', 'media'],
|
|
|
|
'icons',
|
2015-06-08 10:53:12 +02:00
|
|
|
cb
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2015-06-07 00:33:03 +02:00
|
|
|
//
|
|
|
|
// Dev Server
|
|
|
|
//
|
2015-06-08 19:29:04 +02:00
|
|
|
gulp.task('default', function(cb) {
|
2015-06-07 00:33:03 +02:00
|
|
|
runSequence(
|
2015-06-08 19:29:04 +02:00
|
|
|
'clean',
|
2015-06-08 10:53:12 +02:00
|
|
|
'jekyll-build',
|
2015-06-07 00:33:03 +02:00
|
|
|
'watch',
|
|
|
|
'connect',
|
|
|
|
cb
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
//
|
|
|
|
// Production build
|
|
|
|
//
|
|
|
|
gulp.task('build', function(cb) {
|
|
|
|
runSequence(
|
|
|
|
'clean',
|
2015-06-07 03:11:46 +02:00
|
|
|
'jekyll:production',
|
2015-06-08 21:38:12 +02:00
|
|
|
['css', 'js', 'images', 'fonts', 'media'],
|
|
|
|
'icons',
|
2015-06-08 19:29:04 +02:00
|
|
|
'svg-fallbacks',
|
2015-06-07 00:33:03 +02:00
|
|
|
'revision',
|
|
|
|
'revision-replace',
|
2015-06-08 22:03:16 +02:00
|
|
|
'cdn',
|
2015-06-10 23:39:55 +02:00
|
|
|
'optimize:html',
|
|
|
|
'optimize:gzip',
|
|
|
|
'optimize:images',
|
2015-06-07 00:33:03 +02:00
|
|
|
cb
|
|
|
|
);
|
|
|
|
});
|