forked from microsoft/opensource.microsoft.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
201 lines (167 loc) · 4.35 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
"use strict";
// Project Specific Variables
const projectPath = './';
const devPath = projectPath + '_dev';
const buildPath = projectPath + 'assets';
const projectURL = projectPath + './_site';
// npm packages
const fs = require('fs');
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');
// local scripts
const buildThanksData = require('./script/thanks');
const browsersync = require("browser-sync").create();
const del = require("del");
//const reload = browserSync.reload;
const $ = gulpLoadPlugins();
var paths = {
styles: {
// By using styles/**/*.sass we're telling gulp to check all folders for any sass file
src: "assets/**/*.scss",
// Compiled files will end up in whichever folder it's found in (partials are not compiled)
dest: "assets/css"
}
// Easily add additional paths
// ,html: {
// src: '...',
// dest: '...'
// }
};
// 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/"]);
}
function css() {
console.log('Compiling CSS...');
return gulp
.src([devPath + '/scss/compile.scss'])
.pipe(rename({ basename: "index" }))
.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 thanks(done) {
console.log('Building thanks data...');
const yaml = buildThanksData();
const file = path.join(__dirname, '_data', 'dependencies.yml');
fs.writeFileSync(file, yaml);
return done();
}
function js() {
console.log('Compiling JS...');
var scriptsToConcat = [
devPath + '/js/main.js'
];
return (
gulp
.src(scriptsToConcat)
.pipe(concat('main.js'))
.pipe(uglify())
.pipe(gulp.dest("./assets/js/"))
.pipe(browsersync.stream())
);
}
function jsFromNpm() {
return gulp
.src([
'node_modules/gsap/dist/gsap.min.js',
'node_modules/timeago/jquery.timeago.js',
])
.pipe(gulp.dest("./assets/js/"))
}
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();
console.log('watching...');
gulp.watch(
[
"./_dev/scss/**/*"
],
gulp.series(css, jekyll)
);
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 build = gulp.series(clean, jsFromNpm, css, js, thanks);
//const watch = gulp.parallel(watchFiles, browserSync);
const jekylll = gulp.series(clean, gulp.parallel(css,js,jekyll));
const watch = gulp.parallel(watchFiles, browserSync);
gulp.task('default', watch);
gulp.task('build', build);
exports.css = css;
exports.js = js;
exports.jekyll = jekyll;
exports.jekylll = jekylll;
exports.clean = clean;
exports.watch = watch;
exports.watchFiles = watchFiles;
exports.jsFromNpm = jsFromNpm;
exports.thanks = thanks;
//
// gulp.task('default', gulp.series('clean', 'styles', function(done){
// done();
// }));