You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
334 B
14 lines
334 B
const gulp = require('gulp');
|
|
const paths = require('./helpers/paths.js');
|
|
const stripbom = require('gulp-stripbom');
|
|
|
|
function stripBom(dest) {
|
|
gulp.src([paths.src.scripts, paths.src.exclude.libs])
|
|
.pipe(stripbom({ showLog: false }))
|
|
.pipe(gulp.dest(dest));
|
|
}
|
|
|
|
gulp.task('stripBom', () => {
|
|
stripBom(paths.src.root);
|
|
});
|