2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

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']);
};