]> source.dussan.org Git - jquery-ui.git/commitdiff
Build/grunt: cleanup
authorJörn Zaefferer <joern.zaefferer@gmail.com>
Tue, 6 Mar 2012 18:31:00 +0000 (19:31 +0100)
committerJörn Zaefferer <joern.zaefferer@gmail.com>
Tue, 6 Mar 2012 18:31:00 +0000 (19:31 +0100)
grunt.js

index fe1e92bc83fbb48f9ee98a94da405b268cb4ec83..45deca7bdbc08a853df638a2ad607549e9e84eb2 100644 (file)
--- a/grunt.js
+++ b/grunt.js
@@ -11,11 +11,9 @@ var rawList = allFiles.map(function(file) {
 
 var minify = {
   'dist/ui/minified/jquery-ui.min.js': ['<banner:meta.bannerAll>', 'dist/ui/jquery-ui.js'],
-  // TODO adjust banner to get access to the list of included files
   'dist/ui/minified/i18n/jquery-ui-i18n.min.js': ['<banner:meta.bannerI18n>', 'dist/ui/i18n/jquery-ui-i18n.js']
 };
 function minFile(file) {
-  // TODO adjust banner to get access to the list of included files
   minify['dist/' + file.replace(/\.js$/, '.min.js').replace(/ui\//, 'ui/minified/')] = ['<banner>', file];
 }
 allFiles.forEach(minFile);
@@ -30,7 +28,6 @@ function createBanner(files) {
   return '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
       '<%= template.today("isoDate") %>\n' +
       '<%= pkg.homepage ? "* " + pkg.homepage + "\n" : "" %>' +
-      // TODO makes this banner only useful for the min-all task below...
       (files ? '* Includes: ' + files.join(', ') + '\n' : '') +
       '* Copyright (c) <%= template.today("yyyy") %> <%= pkg.author.name %>;' +
       ' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */';