On a Windows platform with Node, the following command is executed
lessc style.less > style.css -x --yui-compress
Displays the style.css file in the format "UCS-2 Little Endian". Usually I didn't care, but I noticed that my compiled styles had huge file sizes (exactly twice, after checking). For some reason, this encoding doubles the file size when viewed in Windows Explorer.
Converting files to UTF8 halves the file size. Skipping -x and -yui-compress does not affect this.
Any ideas? I care because I donβt want to work with some kind of coding converter into my build process.
source share