Preserve License Comments
taufik-nurrohman opened this issue · 3 comments
taufik-nurrohman commented
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.
abagshaw commented
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.
taufik-nurrohman commented
{
compress: { … },
output: {
…
…
comments: /@license|@preserve|^[!*]/
}
}
abagshaw commented
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.