Created
September 1, 2018 15:28
-
-
Save admhpr/6f8c535fc6703d042310ad1f210c72b9 to your computer and use it in GitHub Desktop.
FE config gulp
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
// Gulp.js configuration | |
var // modules | |
gulp = require("gulp"), | |
newer = require("gulp-newer"), | |
imagemin = require("gulp-imagemin"), | |
wait = require("gulp-wait"), | |
concat = require("gulp-concat"), | |
deporder = require("gulp-deporder"), | |
uglify = require("gulp-uglify"), | |
scss = require("gulp-sass"), | |
postcss = require("gulp-postcss"), | |
assets = require("postcss-assets"), | |
autoprefixer = require("autoprefixer"), | |
mqpacker = require("css-mqpacker"), | |
cssnano = require("cssnano"), | |
babel = require("gulp-babel"); | |
// development mode? | |
devBuild = false; | |
// folders | |
folder = { | |
src: "src/", | |
build: "assets/" | |
}; | |
// image processing | |
gulp.task("img", function () { | |
var out = folder.build + "img/"; | |
return gulp | |
.src(folder.src + "img/**/*") | |
.pipe(newer(out)) | |
.pipe( | |
imagemin({ | |
optimizationLevel: 5 | |
}) | |
) | |
.pipe(gulp.dest(out)); | |
}); | |
// JavaScript processing //change vars to reflect folders | |
gulp.task("js", function () { | |
var build = gulp | |
.src(folder.src + "js/**/*") | |
.pipe(deporder()) | |
.pipe( | |
babel({ | |
presets: ["es2015"] | |
}) | |
) | |
.pipe(concat("main.js")); | |
if (!devBuild) { | |
build = build.pipe(uglify()); | |
} | |
//return folders that are in the build folder | |
return build.pipe(gulp.dest(folder.build + "js/")); | |
}); | |
// CSS processing // Sass | |
gulp.task("css", ["img"], function () { | |
var postCssOpts = [ | |
assets({ | |
loadPaths: ["img/"] | |
}), | |
autoprefixer({ | |
browsers: ["last 2 versions", "> 2%"] | |
}), | |
mqpacker | |
]; | |
if (!devBuild) { | |
postCssOpts.push(cssnano); | |
} | |
return gulp | |
.src(folder.src + "scss/*") | |
.pipe( | |
scss({ | |
outputStyle: "nested", | |
includePaths: [folder.src + "/scss/partials/**"], | |
imagePath: "img/", | |
precision: 3, | |
errLogToConsole: true | |
}) | |
) | |
.pipe(concat("styles.css")) | |
.pipe(postcss(postCssOpts)) | |
.pipe(gulp.dest(folder.build + "css/")); | |
}); | |
// run all tasks | |
gulp.task("run", ["css", "js"]); | |
// watch for changes | |
gulp.task("watch", function () { | |
// image changes | |
gulp.watch(folder.src + "img/**/*", ["img"]); | |
// javascript changes | |
gulp.watch(folder.src + "js/**/*", ["js"]); | |
// css changes | |
gulp.watch(folder.src + "scss/**/*", ["css"]); | |
}); | |
// default task | |
gulp.task("default", ["run", "watch"]); |
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
{ | |
"name": "b2t-future", | |
"version": "1.0.0", | |
"main": "future.php", | |
"author": "Adam Harpur", | |
"license": "MIT", | |
"devDependencies": { | |
"@babel/core": "^7.0.0", | |
"autoprefixer": "^9.1.3", | |
"css-mqpacker": "^7.0.0", | |
"cssnano": "^4.1.0", | |
"gulp": "^3.9.1", | |
"gulp-babel": "^8.0.0", | |
"gulp-concat": "^2.6.1", | |
"gulp-deporder": "^1.1.0", | |
"gulp-imagemin": "^4.1.0", | |
"gulp-newer": "^1.4.0", | |
"gulp-postcss": "^8.0.0", | |
"gulp-sass": "^4.0.1", | |
"gulp-uglify": "^3.0.1", | |
"gulp-wait": "^0.0.2", | |
"postcss-assets": "^5.0.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment