-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
201 lines (175 loc) · 4.39 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
/*
The main Gulp file
*/
/*
Settings, paths, etc..
*/
const {
gulp, src, dest, watch, series, parallel
} = require('gulp');
const log = require('fancy-log');
const rename = require('gulp-rename');
const plumber = require('gulp-plumber');
// Styles
const postcss = require('gulp-postcss');
const cleanCSS = require('gulp-clean-css');
const tailwindcss = require('tailwindcss');
const cssImport = require('postcss-import');
const postcssPresetEnv = require('postcss-preset-env');
const postcssCustomMedia = require('postcss-custom-media');
const postcssNesting = require('postcss-nesting');
// Scripts
const babel = require('gulp-babel');
const concat = require('gulp-concat');
const uglify = require('gulp-uglify');
/**
* File paths
*/
const basepath = './src/site/includes/';
const paths = {
css: {
source: `${basepath}css/styles.css`,
dest: './src/site/temp/css/'
},
js: {
source: `${basepath}js/*.js`,
dest: './src/site/temp/js/'
},
tailwindconfig: './tailwind.config.js'
};
/**
* Errors function
*/
const onError = (err) => {
log.error('Gulp failed with <%= err.message %>');
this.emit('end');
};
/**
* Tailwind extractor
*/
const TailwindExtractor = content => (
content.match(/[\w-/:]+(?<!:)/g) || []
);
/**
* Transpile CSS & Tailwind
*/
const compileCSS = () => (
src(paths.css.source)
.pipe(
plumber({ errorHandler: onError })
)
.pipe(
postcss([
cssImport({ from: `${paths.css.source}styles` }),
postcssNesting(),
postcssCustomMedia(),
tailwindcss(paths.tailwindconfig),
postcssPresetEnv({
stage: 2,
features: {
'nesting-rules': true
}
})
])
)
.pipe(dest(paths.css.dest))
.on('end', () => { log.info('CSS compilation successful'); })
);
/**
* Concatinate and compile scripts
*/
const compileJS = () => (
src(paths.js.source)
.pipe(plumber({ errorHandler: onError }))
.pipe(babel({
presets: ['@babel/env'],
sourceType: 'script'
}))
.pipe(concat('scripts.js'))
.pipe(dest(paths.js.dest))
.on('end', () => { log.info('JS compilation successful'); })
);
/**
* Minify scripts
* This will be ran as part of our preflight task
*/
const minifyJS = () => (
src(`${paths.js.dest}scripts.js`)
.pipe(rename({
suffix: '.min'
}))
.pipe(uglify())
.pipe(dest(paths.js.dest))
.on('end', () => { log.info('JS minification successful'); })
);
/**
* Watch files
*/
const watchFiles = (done) => {
watch([
'src/site/*.njk',
`${basepath}/**/*.njk`,
], series(compileCSS));
watch(paths.tailwindconfig, series(compileCSS));
watch(`${basepath}css/**/*.css`, series(compileCSS));
watch(`${basepath}js/**/*.js`, series(compileJS));
done();
};
/**
* CSS Preflight
*
* Compile CSS & Tailwind [PREFLIGHT]
*/
const compileCSSPreflight = () => (
src(paths.css.source)
.pipe(postcss([
cssImport({ from: `${paths.css.source}styles` }),
postcssNesting(),
postcssCustomMedia(),
tailwindcss(paths.tailwindconfig),
postcssPresetEnv({
stage: 2,
features: {
'nesting-rules': true
}
})
]))
.pipe(dest(paths.css.dest))
.on('end', () => { log.info('CSS preflight successful'); })
);
/**
* Minify CSS [PREFLIGHT]
*/
const minifyCSSPreflight = () => (
src([
`${paths.css.dest}*.css`,
`!${paths.css.dest}*.min.css`
])
.pipe(cleanCSS())
.pipe(rename({
suffix: '.min'
}))
.pipe(dest(paths.css.dest))
.on('end', () => { log.info('CSS minification preflight successful'); })
);
/**
* [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);