//
// Dust - Asynchronous Templating v2.2.3
// http://akdubya.github.com/dustjs
//
// Copyright (c) 2010, Aleksander Williams
// Released under the MIT License.
//
with this style :
/*!
Dust - Asynchronous Templating v2.2.3
http://akdubya.github.com/dustjs
Copyright (c) 2010, Aleksander Williams
Released under the MIT License.
*/
the "!" in multiline comments are often interpreted by javascript compressors as a "preserved" comment.
C-style comments starting with /*! are preserved. This is useful with comments containing copyright/license information. As of 2.4.8, the '!' is no longer dropped by YUICompressor. For example:
this is useful for preserving the comment tag when dust.js gets included into a large project , and it can accidentally get minified out.
i'd like to suggest replacing this style:
with this style :
the "!" in multiline comments are often interpreted by javascript compressors as a "preserved" comment.
for example, the YUI compressor: https://github.com/yui/yuicompressor/blob/master/README.md
this is useful for preserving the comment tag when dust.js gets included into a large project , and it can accidentally get minified out.