-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
247 lines (225 loc) · 6.19 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/**
* Required Packages
*/
var gulp = require('gulp'),
sass = require('gulp-sass'),
postcss = require('gulp-postcss'),
rename = require('gulp-rename'),
cleanCSS = require('gulp-clean-css'),
notify = require('gulp-notify'),
run = require('gulp-run-command').default,
babel = require('gulp-babel'),
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
plumber = require('gulp-plumber'),
tailwindcss = require('tailwindcss'),
purgecss = require('@fullhuman/postcss-purgecss');
/**
* Resources paths
*/
var 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');
};
class TailwindExtractor {
static extract(content) {
return content.match(/[A-z0-9-:\/]+/g) || [];
}
}
/**
* Create the tailwind.config.js file.
*/
gulp.task('tailwind:init', run('./node_modules/.bin/tailwind init tailwind.config.js'));
/**
* Compile Tailwind
*/
gulp.task('css:compile', function() {
return gulp.src(paths.sass.source)
.pipe(plumber({ errorHandler: onError }))
.pipe(sass())
.pipe(postcss([
tailwindcss('./tailwind.config.js')
]))
.pipe(rename({
extname: '.css'
}))
.pipe(gulp.dest(paths.sass.dest))
.pipe(notify({
message: 'Tailwind - Compile Success'
}));
});
/**
* Minify the CSS
*/
gulp.task('css:minify', ['css:compile'], function() {
return gulp.src([
'./css/main.css',
'!./css/*.min.css'
])
.pipe(cleanCSS())
.pipe(rename({
suffix: '.min'
}))
.pipe(gulp.dest('./css'))
.pipe(notify({
message: 'CSS - Minify Success'
}));
});
/**
* Run all CSS tasks
*/
gulp.task('css', ['css:minify']);
/**
* Concatinate and Compile Scripts
*/
gulp.task('js:compile', function () {
return gulp.src(paths.javascript.source)
.pipe(plumber({ errorHandler: onError }))
.pipe(babel({
presets: ['@babel/env'],
sourceType: 'script'
}))
.pipe(concat('main.js'))
.pipe(gulp.dest(paths.javascript.dest))
.pipe(notify({
message: 'Javascript - Compile Success'
}));
});
/**
* Minify Scripts
* This will be ran as part of our preflight task
*/
gulp.task('js:minify', function() {
return gulp.src(paths.javascript.dest + 'main.js')
.pipe(rename({
suffix: '.min'
}))
.pipe(uglify())
.pipe(gulp.dest(paths.javascript.dest))
.pipe(notify({
message: 'Javascript - Minify Success'
}));
});
/**
* Run all JS tasks
// gulp.task('js', ['js:minify']);
/**
* Default Gulp task
*/
gulp.task('default', ['css', 'js:compile']);
/**
* Dev task
* 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.
*/
gulp.task('dev', ['css', 'js:compile'], function () {
// Configure watch files.
gulp.watch([
'site/*.njk',
'site/includes/**/*.njk',
], ['css']);
gulp.watch('./tailwind.config.js', ['css']);
gulp.watch('./resources/sass/**/*.scss', ['css']);
gulp.watch('./resources/js/**/*.js', ['js:compile']);
});
/**
* CSS Preflight
* Unfortunately, it isn't possible to pass in parameters to gulp tasks.
* As such, we need to replicate the code.
*
* Compile CSS [PREFLIGHT]
*/
gulp.task('css:compile:preflight', function () {
return gulp.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 min.css file.
* PurgeCSS will not purge the standard app.css file as this is useful for development.
*
* @since 1.0.0
*/
whitelist: [
'body',
'html',
'h1',
'h2',
'h3',
'p',
'blockquote',
'intro',
'error-input-gradient',
],
})
]))
.pipe(rename({
extname: '.css'
}))
.pipe(gulp.dest('css/'))
.pipe(notify({
message: 'Tailwind Preflight Success'
}));
});
/**
* Minify the CSS [PREFLIGHT]
*/
gulp.task('css:minify:preflight', ['css:compile:preflight'], function () {
return gulp.src([
'./css/*.css',
'!./css/*.min.css'
])
.pipe(cleanCSS())
.pipe(rename({
suffix: '.min'
}))
.pipe(gulp.dest('./css'))
.pipe(notify({
message: 'CSS Preflight Success'
}));
});
/**
* Run all CSS tasks
*/
gulp.task('css:preflight', ['css:minify:preflight']);
/**
* Build task
* Run this once you're happy with your site and you want to prep the files for production.
* This will run the CSS and Minify Script functions, 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.
*/
gulp.task('build', ['css:preflight', 'js:minify']);