-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
224 lines (198 loc) · 5.12 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
// General
const { gulp, src, dest, watch, series, parallel } = require('gulp');
const rename = require('gulp-rename');
const notify = require('gulp-notify');
const plumber = require('gulp-plumber');
// Styles
const sass = require('gulp-sass');
const postcss = require('gulp-postcss');
const cleanCSS = require('gulp-clean-css');
const tailwindcss = require('tailwindcss');
const purgecss = require('@fullhuman/postcss-purgecss');
// Scripts
const babel = require('gulp-babel');
const concat = require('gulp-concat');
const uglify = require('gulp-uglify');
/**
* File paths
*/
const paths = {
sass: {
source: './resources/sass/main.scss',
dest: 'css/'
},
javascript: {
source:
[
'./resources/js/utilities/*.js',
'./resources/js/local/*.js'
],
dest: 'javascript/'
}
};
/**
* Errors function
*/
var onError = function(err) {
notify.onError({
title: "Gulp Error - Compile Failed",
message: "Error: <%= error.message %>"
})(err);
this.emit('end');
}
/**
* Tailwind extractor
*/
class TailwindExtractor {
static extract(content) {
return content.match(/[A-z0-9-:\/]+/g) || [];
}
}
/**
* Compile SCSS & Tailwind
*/
const compileCSS = (done) => {
return src(paths.sass.source)
.pipe(plumber({ errorHandler: onError }))
.pipe(sass())
.pipe(postcss([
tailwindcss('./tailwind.config.js')
]))
.pipe(rename({
extname: '.css'
}))
.pipe(dest(paths.sass.dest))
.pipe(notify({
message: 'Tailwind Compile Success'
}));
done();
}
/**
* Concatinate and compile scripts
*/
const compileJS = (done) => {
return src(paths.javascript.source)
.pipe(plumber({ errorHandler: onError }))
.pipe(babel({
presets: ['@babel/env'],
sourceType: 'script'
}))
.pipe(concat('main.js'))
.pipe(dest(paths.javascript.dest))
.pipe(notify({
message: 'Javascript Compile Success'
}));
done();
}
/**
* Minify scripts
* This will be ran as part of our preflight task
*/
const minifyJS = (done) => {
return src(paths.javascript.dest + 'main.js')
.pipe(rename({
suffix: '.min'
}))
.pipe(uglify())
.pipe(dest(paths.javascript.dest))
.pipe(notify({
message: 'Javascript Minify Success'
}));
done();
}
/**
* Watch files
*/
const watchFiles = (done) => {
watch([
'site/*.njk',
'site/includes/**/*.njk',
], series(compileCSS));
watch('./tailwind.config.js', series(compileCSS));
watch('./resources/sass/**/*.scss', series(compileCSS));
watch('./resources/js/**/*.js', series(compileJS));
done();
}
/**
* CSS Preflight
*
* Compile SCSS & Tailwind [PREFLIGHT]
*/
const compileCSSPreflight = (done) => {
return src(paths.sass.source)
.pipe(sass())
.pipe(postcss([
tailwindcss('./tailwind.config.js'),
purgecss({
content: [
'site/*.njk',
'site/includes/**/*.njk',
],
extractors: [
{
extractor: TailwindExtractor,
extensions: ['html', 'njk'],
}
],
/**
* You can whitelist selectors to stop purgecss from removing them from your CSS.
* see: https://www.purgecss.com/whitelisting
*
* Any selectors defined below will not be stripped from the main.min.css file.
* PurgeCSS will not purge the main.css file, as this is useful for development.
*
* @since 1.0.0
*/
whitelist: [
'body',
'html',
'h1',
'h2',
'h3',
'p',
'blockquote',
'intro'
],
})
]))
.pipe(rename({
extname: '.css'
}))
.pipe(dest('css/'))
.pipe(notify({
message: 'CSS & Tailwind [PREFLIGHT] Success'
}));
}
/**
* Minify CSS [PREFLIGHT]
*/
const minifyCSSPreflight = (done) => {
return src([
'./css/*.css',
'!./css/*.min.css'
])
.pipe(cleanCSS())
.pipe(rename({
suffix: '.min'
}))
.pipe(dest('./css'))
.pipe(notify({
message: 'Minify CSS [PREFLIGHT] Success'
}));
}
/**
* [BUILD] task
* Run this once you're happy with your site and you want to prep the files for production.
*
* This will run the Preflight tasks to minify our CSS and scripts, as well as pass the CSS through PurgeCSS to remove any unused CSS.
*
* Always double check that everything is still working. If something isn't displaying correctly, it may be because you need to add it to the PurgeCSS whitelist.
*/
exports.build = series(compileCSSPreflight, minifyCSSPreflight, minifyJS);
/**
* [DEFAULT] task
* This should always be the last in the gulpfile
* This will run while you're building the theme and automatically compile any changes.
* This includes any html changes you make so that the PurgeCSS file will be updated.
*/
exports.default = series(compileCSS, compileJS, watchFiles);