abagshaw/brackets-minifier

Preserve License Comments

taufik-nurrohman opened this issue · 3 comments

How can I keep JavaScript/CSS comments prefixed by /*! or /** or contains @license in the block? Editing the options parameters in UglifyJS/CSS instance from the source did not change anything.

Sorry for the delay - this certainly seems possible in UglifyJS as I think they have a feature for that. I'm not sure about cleancss though. I'll see if I can get around to adding that option in the UI soon.

{
  compress: {},
  output: {
    
    
    comments: /@license|@preserve|^[!*]/
  }
}

It should now be possible with brackets-minifier v3.0.0 to preserve comments (licences or otherwise) by passing the appropriate options to UglifyJS3 and/or CleanCSS.