Adding grunt prod task

- compiles assets for production environment
This commit is contained in:
Hannah Wolfe 2013-09-17 00:44:45 +01:00
parent 42a5e74ddb
commit d5518c986a

View File

@ -836,6 +836,8 @@ var path = require('path'),
// TODO: Production build task that minifies with uglify:prod
grunt.registerTask("prod", ['sass:admin', 'handlebars', 'concat', "uglify"]);
// When you just say "grunt"
grunt.registerTask("default", ['sass:admin', 'handlebars', 'concat']);
};