Updated default Grunt task

This commit is contained in:
Luis Leiva 2016-11-27 20:52:52 +01:00
parent 8e372ba6fa
commit 6d0d4b528e
1 changed files with 4 additions and 5 deletions

View File

@ -86,10 +86,9 @@ module.exports = function(grunt) {
grunt.registerTask('memento', [ 'uglify:memento', 'uglify:jqMemento', 'clean' ]);
grunt.registerTask('default', [
'concat:full', 'uglify:full', 'concat:jqFull', 'uglify:jqFull',
'uglify:jsketch',
'uglify:sketchable', 'uglify:jqSketchable',
'uglify:memento', 'uglify:jqMemento',
'clean'
'full',
'jsketch',
'sketchable',
'memento',
]);
};