This repository was archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
109 lines (91 loc) · 3.08 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
// Gulp & Options
const {src, dest, watch, series, parallel} = require('gulp');
const $ = require('gulp-load-plugins')();
// Variables & parameters
require('dotenv').config();
const hasFlag = require('has-flag');
const isQuiet = hasFlag('quiet');
const pkg = require('./package.json');
const destPath = (process.env.pathPrefix || 'public').replace(/^\/|\/$/g, '');
// Tasks
const clean = async () => {
return await require('del')([destPath +'/*', '!' + destPath + '/static']);
};
const copyMisc = () => {
return src(['site/favicon.ico', 'site/humans.txt'])
.pipe(dest(destPath));
};
const buildHTML = (cb) => {
require('child_process').exec(`npx eleventy${isQuiet ? ' --quiet' : ''}${process.env.pathPrefix ? ' --pathprefix=' + process.env.pathPrefix : ''}`, (error, stdout) => {
process.stdout.write(stdout);
// if (error) console.error(stderr);
cb(error);
});
};
const watchHTML = () => {return watch(['site/**/*', '.eleventy.js', '{_11ty,_netlify}/**/*.js'], buildHTML);};
const buildCSS = () => {
return src('site/_theme/css/*.css')
.pipe($.hb().data({pkg: pkg}))
.pipe($.postcss([
require('tailwindcss')('./site/_theme/tailwind.config.js'),
require('postcss-nesting'),
require('postcss-custom-properties'),
require('autoprefixer'),
...(process.env.NODE_ENV === 'production')
? [require('@fullhuman/postcss-purgecss')({
content: ['./site/**/*.*'],
defaultExtractor: content => content.match(/[\w-/.:]+(?<!:)/g) || []
})]
: []
]))
.pipe($.cleanCss({
format: {
breakWith: 'unix',
breaks: {afterComment: true, afterRuleEnds: (process.env.NODE_ENV !== 'production')}
},
level: {
1: {specialComments: '1'},
2: {restructureRules: true}
}
}))
.pipe($.rename({suffix: '.min'}))
.pipe(dest(destPath + '/css'));
};
const watchCSS = () => {return watch(['site/_theme/css/*.css', 'site/_theme/tailwind.config.js'], buildCSS);};
const buildJS = () => {
return src(['site/_theme/js/**/*.js'])
.pipe($.concat('scripts.js'))
.pipe($.uglify())
.pipe($.rename({suffix: '.min'}))
.pipe(dest(destPath + '/js'));
};
const watchJS = () => {return watch(['site/theme/js/**/*.js'], buildJS);};
const serve = () => {
const transformImage = require('./_netlify/transform-image-middleware.js')(destPath + '/static/images');
return require('browser-sync')
.init({
server: destPath,
middleware: [{
route: '/static/images',
handle: transformImage
}],
files: [
destPath + '/**/*.html',
destPath + '/css/*.css',
destPath + '/js/*.js'
],
browser: [
// 'C:/Program Files/Firefox Developer Edition/firefox.exe',
...(process.env.BROWSER) ? [process.env.BROWSER] : ['C:/Program Files/Firefox Developer Edition/firefox.exe'],
]
});
};
exports.clean = clean;
exports.build = series(
clean,
parallel(copyMisc, buildHTML, buildCSS, buildJS)
);
exports.live = series(
parallel(buildHTML, buildCSS, buildJS),
parallel(watchHTML, watchCSS, watchJS, serve)
);