forked from NickStees/jekyll-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
149 lines (139 loc) · 3.77 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// run the FOLLOWING BEFORE trying to run gulp
// npm install gulp-cli -g
// npm install gulp -D
// npm install
//
var gulp = require("gulp");
var browserSync = require("browser-sync").create();
var sass = require("gulp-sass");
var prefix = require("gulp-autoprefixer");
var cp = require("child_process");
var imagemin = require("gulp-imagemin");
var concat = require("gulp-concat");
var cleanCSS = require("gulp-clean-css");
var rename = require("gulp-rename");
var uglify = require("gulp-uglify");
var postcss = require("gulp-postcss");
var mqpacker = require("css-mqpacker");
var babel = require("gulp-babel");
var jekyll = process.platform === "win32" ? "jekyll.bat" : "jekyll";
var messages = {
jekyllBuild: '<span style="color: grey">Running:</span> $ jekyll build',
};
/**
* Build the Jekyll Site
*/
gulp.task("jekyll-build", function(done) {
browserSync.notify(messages.jekyllBuild);
return cp.spawn(jekyll, ["build"], { stdio: "inherit" }).on("close", done);
});
/**
* Rebuild Jekyll & do page reload
*/
gulp.task("jekyll-rebuild", ["jekyll-build"], function() {
browserSync.reload();
});
/**
* Wait for jekyll-build, then launch the Server
*/
gulp.task("browser-sync", ["jekyll-build", "sass", "bundle-js"], function() {
browserSync.init({
server: {
baseDir: "_site",
},
});
});
/**
* Compile files from _scss into both _site/css (for live injecting) and site (for future jekyll builds). Also create minified versions for production use.
*/
gulp.task("sass", function() {
return gulp
.src("assets/_scss/main.scss")
.pipe(
sass({
includePaths: ["scss"],
onError: browserSync.notify,
})
)
.pipe(postcss([mqpacker]))
.pipe(
prefix(["last 15 versions", "> 5%", "ie 10", "ie 11"], { cascade: true })
)
.pipe(gulp.dest("_site/assets/css"))
.pipe(gulp.dest("assets/css"))
.pipe(
cleanCSS({
compatibility: "ie9",
processImportFrom: ["!fonts.googleapis.com"],
})
)
.pipe(rename({ extname: ".min.css" }))
.pipe(gulp.dest("_site/assets/css"))
.pipe(gulp.dest("assets/css"))
.pipe(browserSync.stream());
});
/**
* Watch scss files for changes & recompile
* Watch html/md files, run jekyll & reload BrowserSync
*/
gulp.task("watch", function() {
gulp.watch("assets/_scss/*.scss", ["sass"]);
gulp.watch(
["assets/js/**/*.js", "!assets/js/**/*.min.js", "!assets/js/bundle.js"],
["bundle-js"]
);
gulp.watch(
[
"*.md",
"*.html",
"_layouts/*.html",
"_includes/*.html",
"_posts/*",
"_data/*",
],
["jekyll-rebuild"]
);
});
/**
* Bundle js files together and then created minified versions and publish them to the correct locations.
*/
gulp.task("bundle-js", function() {
return gulp
.src(["assets/js/vendor/modernizr-custom.js", "assets/js/main.js"])
.pipe(concat("bundle.js"))
.pipe(gulp.dest("assets/js"))
.pipe(
babel({
presets: ["env"],
})
)
.pipe(uglify())
.pipe(rename({ extname: ".min.js" }))
.pipe(gulp.dest("assets/js"))
.pipe(browserSync.stream());
});
// run "gulp images" to process images from assets/_src_img to /img folder to be used on the site
gulp.task("images", function() {
gulp
.src([
"assets/_src_img/**/*.png",
"assets/_src_img/**/*.jpg",
"assets/_src_img/**/*.gif",
"assets/_src_img/**/*.jpeg",
"assets/_src_img/**/*.svg",
])
.pipe(
imagemin({
interlaced: true,
progressive: true,
optimizationLevel: 5,
svgoPlugins: [{ removeViewBox: true }],
})
)
.pipe(gulp.dest("img"));
});
/**
* Default task, running just `gulp` will compile the sass,
* compile the jekyll site, launch BrowserSync & watch files.
*/
gulp.task("default", ["browser-sync", "watch"]);