Add comment (TODO: amend before land)

(cherry picked from commit b8a875cabf)
This commit is contained in:
Rafael Xavier de Souza 2013-06-24 09:21:55 -03:00 committed by Scott González
parent 457c85ae05
commit 6f87ef0c07

View File

@ -248,6 +248,8 @@ grunt.registerTask( "lint", [ "jshint", "csslint", "htmllint" ] );
grunt.registerTask( "test", [ "qunit" ] );
grunt.registerTask( "sizer", [ "concat:ui", "uglify:main", "compare_size:all" ] );
grunt.registerTask( "sizer_all", [ "concat:ui", "uglify", "compare_size" ] );
// "copy:dist_units_images" is used by unit tests
grunt.registerTask( "build", [ "concat", "uglify", "cssmin", "copy:dist_units_images" ] );
};