Last active
July 16, 2018 15:36
-
-
Save ashussen/27c9fd2eaf050cceb3c2ffc293a5386f to your computer and use it in GitHub Desktop.
Based on JointsWP 5 gulpfile.js modified to improve performance on development stage.
This file contains hidden or 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
// GULP PACKAGES | |
// Most packages are lazy loaded | |
var gulp = require('gulp'), | |
gutil = require('gulp-util'), | |
browserSync = require('browser-sync').create(), | |
filter = require('gulp-filter'), | |
plugin = require('gulp-load-plugins')(); | |
// GULP VARIABLES | |
// Modify these variables to match your project needs | |
// Set local URL if using Browser-Sync | |
const LOCAL_URL = 'http://canterbury.dev/'; | |
// Set path to Foundation files | |
const FOUNDATION = 'node_modules/foundation-sites'; | |
// Select Foundation components, remove components project will not use | |
const SOURCE = { | |
scripts: [ | |
// Lets grab what-input first | |
'node_modules/what-input/dist/what-input.js', | |
// Foundation core - needed if you want to use any of the components below | |
FOUNDATION + '/dist/js/plugins/foundation.core.js', | |
FOUNDATION + '/dist/js/plugins/foundation.util.*.js', | |
// Pick the components you need in your project | |
// FOUNDATION + '/dist/js/plugins/foundation.abide.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.accordion.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.accordionMenu.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.drilldown.js', | |
FOUNDATION + '/dist/js/plugins/foundation.dropdown.js', | |
FOUNDATION + '/dist/js/plugins/foundation.dropdownMenu.js', | |
FOUNDATION + '/dist/js/plugins/foundation.equalizer.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.interchange.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.magellan.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.offcanvas.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.orbit.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.responsiveAccordionTabs.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.responsiveMenu.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.responsiveToggle.js', | |
FOUNDATION + '/dist/js/plugins/foundation.reveal.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.slider.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.smoothScroll.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.sticky.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.tabs.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.toggler.js', | |
// FOUNDATION + '/dist/js/plugins/foundation.tooltip.js', | |
// Place custom JS here, files will be concantonated, minified if ran with --production | |
'assets/scripts/js/**/*.js', | |
], | |
// Scss files will be concantonated, minified if ran with --production | |
styles: 'assets/styles/scss/**/*.scss', | |
// Images placed here will be optimized | |
images: 'assets/images/**/*', | |
php: '**/*.php' | |
}; | |
const ASSETS = { | |
styles: 'assets/styles/', | |
scripts: 'assets/scripts/', | |
images: 'assets/images/', | |
all: 'assets/' | |
}; | |
const JSHINT_CONFIG = { | |
"node": true, | |
"globals": { | |
"document": true, | |
"jQuery": true | |
} | |
}; | |
// GULP FUNCTIONS | |
// JSHint, concat, and minify JavaScript | |
gulp.task('scripts', function() { | |
// Use a custom filter so we only lint custom JS | |
const CUSTOMFILTER = filter(ASSETS.scripts + 'js/**/*.js', {restore: true}); | |
return gulp.src(SOURCE.scripts) | |
.pipe(plugin.plumber(function(error) { | |
gutil.log(gutil.colors.red(error.message)); | |
this.emit('end'); | |
})) | |
.pipe(plugin.sourcemaps.init()) | |
.pipe(plugin.babel({ | |
presets: ['es2015'], | |
compact: true, | |
ignore: ['what-input.js'] | |
})) | |
.pipe(CUSTOMFILTER) | |
.pipe(plugin.jshint(JSHINT_CONFIG)) | |
.pipe(plugin.jshint.reporter('jshint-stylish')) | |
.pipe(CUSTOMFILTER.restore) | |
.pipe(plugin.concat('scripts.js')) | |
.pipe(plugin.uglify()) | |
.pipe(plugin.sourcemaps.write('.')) // Creates sourcemap for minified JS | |
.pipe(gulp.dest(ASSETS.scripts)) | |
}); | |
// Compile Sass, Autoprefix and minify | |
gulp.task('styles', function() { | |
return gulp.src(SOURCE.styles) | |
.pipe(plugin.plumber(function(error) { | |
gutil.log(gutil.colors.red(error.message)); | |
this.emit('end'); | |
})) | |
.pipe(plugin.sourcemaps.init()) | |
.pipe(plugin.sass()) | |
// This is not needed on development, slow down browsersync compile | |
// .pipe(plugin.autoprefixer({ | |
// browsers: [ | |
// 'last 2 versions', | |
// 'ie >= 9', | |
// 'ios >= 7' | |
// ], | |
// cascade: false | |
// })) | |
//.pipe(plugin.cssnano()) | |
.pipe(plugin.sourcemaps.write('.')) | |
.pipe(gulp.dest(ASSETS.styles)) | |
.pipe(browserSync.reload({ | |
stream: true | |
})); | |
}); | |
// Optimize images, move into assets directory | |
gulp.task('images', function() { | |
return gulp.src(SOURCE.images) | |
.pipe(plugin.imagemin()) | |
.pipe(gulp.dest(ASSETS.images)) | |
}); | |
gulp.task( 'translate', function () { | |
return gulp.src( SOURCE.php ) | |
.pipe(plugin.wpPot( { | |
domain: 'jointswp', | |
package: 'Example project' | |
} )) | |
.pipe(gulp.dest('file.pot')); | |
}); | |
// Browser-Sync watch files and inject changes | |
gulp.task('browsersync', function() { | |
// Watch these files | |
var files = [ | |
SOURCE.php, //just track php changes, do not refresh on style changes | |
]; | |
browserSync.init(files, { | |
proxy: LOCAL_URL, | |
}); | |
gulp.watch(SOURCE.styles, gulp.parallel('styles')); | |
gulp.watch(SOURCE.scripts, gulp.parallel('scripts')).on('change', browserSync.reload); | |
//gulp.watch(SOURCE.images, gulp.parallel('images')); | |
}); | |
// Watch files for changes (without Browser-Sync) | |
gulp.task('watch', function() { | |
// Watch .scss files | |
gulp.watch(SOURCE.styles, gulp.parallel('styles')); | |
// Watch scripts files | |
gulp.watch(SOURCE.scripts, gulp.parallel('scripts')); | |
// Watch images files | |
gulp.watch(SOURCE.images, gulp.parallel('images')); | |
}); | |
// Run styles, scripts and foundation-js | |
gulp.task('default', gulp.parallel('styles', 'scripts', 'images')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just a question to get this working I changed line 14 to
const LOCAL_URL = 'http://localhost:8888/MySite/';
But no auto refresh, is this is what it is meant for or is this syncing just to a live server?