-
Notifications
You must be signed in to change notification settings - Fork 13
/
gulpfile.js
155 lines (133 loc) · 3.46 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
150
151
152
153
154
155
"use strict";
// Project Specific Variables
const projectPath = './';
const devPath = projectPath + '_dev';
const buildPath = projectPath + 'assets';
const projectURL = projectPath + './_site';
// npm packages
const gulp = require('gulp');
const gulpLoadPlugins = require('gulp-load-plugins');
const cp = require("child_process");
const rename = require('gulp-rename');
const newer = require('gulp-newer');
const path = require('path');
const sass = require('gulp-sass');
const autoprefixer = require('gulp-autoprefixer');
const cleanCSS = require('gulp-clean-css');
const concat = require('gulp-concat');
const uglify = require('gulp-uglify');
const imagemin = require('gulp-imagemin');
const pngquant = require('imagemin-pngquant');
const webpack = require("webpack");
const webpackconfig = require("./webpack.config.js");
const webpackstream = require("webpack-stream");
const browsersync = require("browser-sync").create();
const del = require("del");
//const reload = browserSync.reload;
const $ = gulpLoadPlugins();
var paths = {
styles: {
src: "assets/**/*.scss",
dest: "assets/css"
}
};
// BrowserSync
function browserSync() {
//console.log('browser sync');
browsersync.init({
server: {
baseDir: "./_site/"
},
open: false,
injectChanges: true,
port: 3000,
files: [buildPath + '/css/*.css', buildPath + '/js/*.js', projectPath + '*.html']
});
// done();
}
// BrowserSync Reload
function browserSyncReload(done) {
browsersync.reload();
done();
}
// Clean assets
function clean() {
return del(["./_site/assets/css/"]);
}
function css() {
return gulp
.src([devPath + '/scss/index.scss'])
.pipe(rename({ basename: "main" }))
.pipe(sass({includePaths: ['node_modules/']}).on('error', sass.logError))
.pipe(autoprefixer({ cascade: false }))
.pipe(cleanCSS())
.pipe(gulp.dest("./assets/css/"))
.pipe(browsersync.stream());
//.pipe(browsersync.stream());
}
function js() {
console.log('Scripts...');
return (
gulp
.src([devPath + '/js/main.js'])
//.pipe(plumber())
.pipe(webpackstream(webpackconfig, webpack))
//.pipe(uglify())
// folder only, filename is specified in webpack config
.pipe(gulp.dest(buildPath + '/js/'))
.pipe(browsersync.stream())
);
}
// function images() {
// return gulp
// .src([devPath + '/images/**/*.{png,jpg,gif,ico,svg}'])
// .pipe(newer(buildPath + '/images/'))
// .pipe(imagemin({
// progressive: true,
// use: [pngquant()]
// }))
// .pipe(gulp.dest(buildPath + '/images/'))
// }
// Jekyll
function jekyll() {
console.log('recompile jekyll');
return cp.spawn("bundle", ["exec", "jekyll", "build"], { stdio: "inherit" });
}
function watchFiles() {
css();
js();
jekyll();
gulp.watch(
[
"./_dev/scss/**/*"
],
gulp.series(css, browserSyncReload)
);
gulp.watch(
[
"./_dev/js/main.js"
],
gulp.series(js, jekyll, browserSyncReload)
);
gulp.watch(
[
"./_includes/**/*",
"./_layouts/**/*",
"./_pages/**/*",
"./_posts/**/*",
"./_projects/**/*"
],
gulp.series(jekyll, browserSyncReload)
);
//gulp.watch("./assets/img/**/*", images);
}
const jekylll = gulp.series(clean, gulp.parallel(css,js,jekyll));
const watch = gulp.parallel(watchFiles, browserSync);
gulp.task('default', watch);
exports.css = css;
exports.js = js;
exports.jekyll = jekyll;
exports.jekylll = jekylll;
exports.clean = clean;
exports.watch = watch;
exports.watchFiles = watchFiles;