From f827819197e0d327b28028b44575f4e0f2002cba Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Thu, 5 Dec 2013 19:00:50 +0100 Subject: [PATCH 1/2] 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 17186f2db..39a80b877 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' }, From a2f979d93508f1811acea76ae86847a650cac5ed Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Thu, 5 Dec 2013 19:37:45 +0100 Subject: [PATCH 2/2] Change American spelling to UK spelling --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 39a80b877..bf34e3eb1 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -24,7 +24,7 @@ module.exports = function(grunt) { ' * \n' + ' */ \n\n' + ' /**' + - ' * @licence <%= meta.license %>\n' + + ' * @license <%= meta.license %>\n' + ' */ \n\n' },