Skip to content

Commit

Permalink
stop blowing up dist so that compare_size can work
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesherov committed Jun 29, 2012
1 parent a563de7 commit b142928
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions grunt.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,6 @@ grunt.registerHelper( "git-date", function( fn ) {
});
});

grunt.registerTask( "clean", function() {
require( "rimraf" ).sync( "dist" );
});

grunt.registerTask( "max", function() {
var done = this.async();
grunt.helper( "git-date", function( error, date ) {
Expand Down Expand Up @@ -107,6 +103,6 @@ grunt.registerTask( "testswarm", function( commit, configFile ) {
});

grunt.registerTask( "default", "lint qunit build compare_size" );
grunt.registerTask( "build", "clean max min" );
grunt.registerTask( "build", "max min" );

};

0 comments on commit b142928

Please sign in to comment.