Search code examples
javascriptcommentsminifyyui-compressor

Skip License/Credit Comments when minifying JavaScript using YUIcompressor


Is there a way to keep license/credit comments when the JavaScript is being minified by YUICompressor? Is there any special commenting characters? Or any flag for that in YUICompressor?

Thanks, Grace


Solution

  • Yes, use

    /*!
     *
     */
    

    The exclamation tells the compressor to retain the comment.

    Documentation