assemble / assemble-less

Grunt task for compiling LESS to CSS. This task does for less what Assemble does for HTML, making it much easier to modularize and reduce repetition in stylesheets.

Home Page:http://github.com/assemble/assemble/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

banner should be appended after the css is compressed

caiguanhao opened this issue · comments

commented

currently if you have a newline at the end of the banner option:

less: {
  options: {
    compress: true,
    banner: '/*! Banner */\n'
  }
}

the trailing newline will also be removed. the banner should not be appended before the css is compressed. it should let users to choose whether the banner is in a new line or not.

👍 good point. I'll plan this change