Skip to content

Commit

Permalink
removed default command
Browse files Browse the repository at this point in the history
  • Loading branch information
tbranyen committed Jul 9, 2012
1 parent 5159065 commit e4904b2
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions grunt.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,16 +146,12 @@ module.exports = function(grunt) {

});

// The default task will remove all contents inside the dist/ folder, lint
// The debug task will remove all contents inside the dist/ folder, lint
// all your code, precompile all the underscore templates into
// dist/debug/templates.js, compile all the application code into
// dist/debug/require.js, and then concatenate the require/define shim
// almond.js and dist/debug/templates.js into the require.js file.
grunt.registerTask("default", "clean lint jst requirejs concat");

// The debug task is simply an alias to default to remain consistent with
// debug/release.
grunt.registerTask("debug", "default");
grunt.registerTask("debug", "clean lint jst requirejs concat");

// The release task will run the debug tasks and then minify the
// dist/debug/require.js file and CSS files.
Expand Down

0 comments on commit e4904b2

Please sign in to comment.