forked from zestedesavoir/zds-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gulpfile.js
222 lines (185 loc) · 6.13 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
const autoprefixer = require('autoprefixer')
const concat = require('gulp-concat')
const cssnano = require('cssnano')
const del = require('del')
const { ESLint } = require('eslint')
const gulp = require('gulp')
const gulpif = require('gulp-if')
const imagemin = require('gulp-imagemin')
const options = require('gulp-options')
const path = require('path')
const postcss = require('gulp-postcss')
const sass = require('gulp-dart-sass')
const spritesmith = require('gulp.spritesmith')
const terser = require('gulp-terser-js')
const fs = require('fs')
/* Speed mode */
// You can use '--speed' to speed the tasks, it disables some optimisations like minification
const fast = options.has('speed')
if (!fast) {
console.log('The speed mode is not enabled.')
} else {
console.log('The speed mode is enabled.')
}
/* SCSS tasks */
// Generates a sprite with the website icons
function spriteCss() {
return gulp.src('assets/images/sprite/*.png')
.pipe(spritesmith({
cssTemplate: 'assets/scss/_sprite.scss.hbs',
cssName: 'scss/_sprite.scss',
imgName: 'images/sprite.png',
retinaImgName: 'images/[email protected]',
retinaSrcFilter: 'assets/images/sprite/*@2x.png'
}))
.pipe(gulp.dest('dist/'))
}
// PostCSS settings
const postcssPlugins = [autoprefixer(), cssnano()]
// Node SASS settings
const customSass = () => sass({
sourceMapContents: true,
includePaths: [
path.join(__dirname, 'node_modules'),
path.join(__dirname, 'dist', 'scss')
]
}).on('error', sass.logError)
function customSassError(error) {
if (error.plugin === 'gulp-sass') {
terser.printError.call(this, {
name: error.name,
line: error.line,
col: error.column,
filePath: error.file,
fileContent: '' + fs.readFileSync(error.file),
message: (error.messageOriginal || '').replace(error.file, path.basename(error.file)).split(' in file')[0],
plugin: error.plugin
})
console.log('Original message:', error.messageFormatted)
this.emit('end')
} else {
console.log(error.message)
}
// TODO: https://github.com/A-312/gulp-terser-js#can-i-use-terser-to-format-error-of-an-other-gulp-module-
}
// Generates CSS for the website and the ebooks
function css() {
return gulp.src(['assets/scss/main.scss', 'assets/scss/zmd.scss'], { sourcemaps: true })
.pipe(customSass()) // SCSS to CSS
.on('error', customSassError)
.pipe(gulpif(!fast, postcss(postcssPlugins))) // Adds browsers prefixs and minifies
.pipe(gulp.dest('dist/css/', { sourcemaps: '.' }))
}
// Generates CSS for the static error pages in the folder `errors/`
function errors() {
return gulp.src('errors/scss/main.scss', { sourcemaps: true })
.pipe(customSass())
.on('error', customSassError)
.pipe(gulpif(!fast, postcss(postcssPlugins)))
.pipe(gulp.dest('errors/css/', { sourcemaps: '.' }))
}
/* JS tasks */
// ESLint options
let eslintOptions = {}
const fix = options.has('fix')
if (fix) {
eslintOptions = { fix: true }
}
// Lints the JS source files
async function jsLint() {
const eslint = new ESLint(eslintOptions)
const results = await eslint.lintFiles(['assets/js/*.js', 'Gulpfile.js'])
if (fix) {
await ESLint.outputFixes(results)
}
const formatter = await eslint.loadFormatter('stylish')
const resultText = formatter.format(results)
console.log(resultText)
}
// Get JS minified files from packages
function jsPackages() {
return gulp.src([
require.resolve('jquery/dist/jquery.min.js'),
require.resolve('moment/min/moment.min.js'),
require.resolve('moment/locale/fr.js'),
require.resolve('chartjs-adapter-moment/dist/chartjs-adapter-moment.min.js'),
require.resolve('chart.js/dist/chart.min.js'),
require.resolve('easymde/dist/easymde.min.js')
])
.pipe(gulp.dest('dist/js/'))
}
// Generates JS for the website
function js() {
return gulp.src([
// Used by other scripts, must be first
'assets/js/common/*.js',
// All the scripts
'assets/js/*.js'
], { base: '.', sourcemaps: true })
.pipe(gulpif(!fast, terser())) // Minifies the JS
.on('error', function(error) {
if (error.plugin.startsWith('gulp-terser')) {
this.emit('end')
} else {
console.log(error.message)
}
})
.pipe(concat('script.js', { newLine: ';\r\n' })) // One JS file to rule them all
.pipe(gulp.dest('dist/js/', { sourcemaps: '.' }))
}
/* Images tasks */
// Optimizes the images
function images() {
const plugins = [
imagemin.gifsicle(),
imagemin.mozjpeg(),
imagemin.optipng(),
// Avoid over-optimizing svg animations
imagemin.svgo({
plugins: [
{ removeHiddenElems: false }
]
})
]
return gulp.src(['assets/{images,smileys,licenses}/**/*', '!assets/images/sprite/*.png'])
.pipe(gulpif(!fast, imagemin(plugins))) // Minify the images
.pipe(gulp.dest('dist/'))
}
function spriteImages() {
return gulp.src(['dist/images/sprite*.png'])
.pipe(gulpif(!fast, imagemin())) // Minify the images
.pipe(gulp.dest('dist/images/'))
}
/* Other tasks */
// Prepares files for zmarkdown
function prepareZmd() {
return gulp.src(['zmd/node_modules/katex/dist/{katex.min.css,fonts/*}'])
.pipe(gulp.dest('dist/css/'))
}
// Prepares files for easy mde
function prepareEasyMde() {
return gulp.src(['node_modules/easymde/dist/easymde.min.css'])
.pipe(gulp.dest('dist/css/'))
}
// Deletes the generated files
function clean() {
return del('dist/')
}
/* Commands */
// Watch for file changes
function watch() {
gulp.watch('assets/js/*.js', js)
gulp.watch(['assets/{images,smileys}/**/*', '!assets/images/sprite/*.png'], images)
gulp.watch(['assets/scss/**/*.scss'], css)
gulp.watch(['assets/images/sprite/*.png', 'assets/scss/_sprite.scss.hbs'], gulp.series(spriteCss, gulp.parallel(css, spriteImages)))
}
// Build the front
const build = gulp.parallel(prepareZmd, prepareEasyMde, jsPackages, js, images, gulp.series(spriteCss, gulp.parallel(css, spriteImages)))
exports.build = build
exports.watch = gulp.series(build, watch)
exports.lint = jsLint
exports.clean = clean
exports.errors = errors
exports.prepareZmd = prepareZmd
exports.prepareEasyMde = prepareEasyMde
exports.default = gulp.parallel(watch, jsLint)