-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
38 lines (33 loc) · 1006 Bytes
/
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
const gulp = require('gulp');
const gulpUglify = require('gulp-uglify');
const removeEmptyLines = require('gulp-remove-empty-lines');
const through = require('through2');
function removeStylesWhiteSpaces() {
return gulp
.src('dist/**/*.styles.js')
.pipe(
(() => {
return through.obj((file, encoding, callback) => {
if (file.isNull()) {
return callback(null, file);
}
file.contents = Buffer.from(
(() => {
return file.contents
.toString()
.replace(/(\\r\\n|\\n|\\r)/gm, '')
.replace(/\s+/g, ' ')
.replace(/" /g, '"')
.replace(/ "/g, '"');
})()
);
callback(null, file);
});
})()
)
.pipe(gulp.dest('dist/'));
}
function uglify() {
return gulp.src('dist/**/*.js').pipe(gulpUglify()).pipe(gulp.dest('dist/'));
}
exports.postBuild = gulp.series(removeStylesWhiteSpaces, uglify);