From f827819197e0d327b28028b44575f4e0f2002cba Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Thu, 5 Dec 2013 19:00:50 +0100 Subject: [PATCH] Minifier complains about annotation in non-JSDoc tag ```INFO: [Minify] Minify: Exception in minifier: input:1665: WARNING - Parse error. Non-JSDoc comment has annotations. Did you mean to start it with '/**'?``` --- Gruntfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 17186f2d..39a80b87 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -22,7 +22,9 @@ module.exports = function(grunt) { ' * <%= meta.copyright %>, <%= pkg.author.name %> <<%= pkg.author.email %>> \n' + ' * Licensed under the <%= meta.license %> License. \n' + ' * \n' + - ' * @licence \n' + + ' */ \n\n' + + ' /**' + + ' * @licence <%= meta.license %>\n' + ' */ \n\n' },