snapappointments / bootstrap-select

:rocket: The jQuery plugin that brings select elements into the 21st century with intuitive multiselection, searching, and much more.
https://developer.snapappointments.com/bootstrap-select/
MIT License
9.84k stars 2.72k forks source link

Missing empty line at the end of bootstrap-select.js #2835

Open gaabriel000 opened 1 year ago

gaabriel000 commented 1 year ago

This is just a tiny problem. I'm using grunt concat in my project and just had a problem with the last commented line of the dist/js/bootstrap-select.js and dist/js/bootstrap-select.min.js. The comment line adds the first line of new files as comments too. A final empty line in the bootstrap-select.js could solve this.

If someone is having this problem too, I suggest adding the following option to the grunt concat: separator: grunt.util.linefeed + ';' + grunt.util.linefeed, This will auto add an empty line.