Grunt task to add or remove BOM from files
npm install grunt-byte-order-markgrunt-contrib-bom  
=================
Grunt task to strip or add BOM to files
``shell`
npm install grunt-byte-order-mark --save-dev
`js`
grunt.loadNpmTasks('grunt-byte-order-mark');
`js``
bom: {
addBom: {
src: 'file-wihtout-bom.txt',
options: {
add: true
}
},
removeBom: {
src: 'file-wiht-bom.txt',
options: {
remove: true
}
}
}
Lets go dancing!