5.0.0 • Published 6 months ago

gulp-bom v5.0.0

Weekly downloads
3,957
License
MIT
Repository
github
Last release
6 months ago

gulp-bom

Add a UTF-8 BOM to files

From Wikipedia:

The Unicode Standard permits the BOM in UTF-8, but does not require nor recommend its use. Byte order has no meaning in UTF-8.

Gulp strips the BOM as it's useless. This is for the few dumb tools that do require it. Don't use this unless you really need to.

Install

npm install --save-dev gulp-bom

Usage

import gulp from 'gulp';
import bom from 'gulp-bom';

export default () => (
	gulp.src('app.js')
		.pipe(bom())
		.pipe(gulp.dest('dist'))
);