From afb8753f3f90772607f70a9070c923f11ba20d03 Mon Sep 17 00:00:00 2001 From: claudiosmweb Date: Wed, 30 Jul 2014 14:23:34 -0300 Subject: [PATCH] fixed some coding standards in Gruntfile.js --- Gruntfile.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 0f3f549287f..b3927a37a27 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -89,14 +89,14 @@ module.exports = function( grunt ){ watch: { less: { files: ['<%= dirs.css %>/*.less'], - tasks: ['less', 'cssmin'], + tasks: ['less', 'cssmin'] }, js: { files: [ '<%= dirs.js %>/admin/*js', '<%= dirs.js %>/frontend/*js', '!<%= dirs.js %>/admin/*.min.js', - '!<%= dirs.js %>/frontend/*.min.js', + '!<%= dirs.js %>/frontend/*.min.js' ], tasks: ['uglify'] } @@ -140,7 +140,7 @@ module.exports = function( grunt ){ dest: 'deploy', expand: true, dot: true - }, + } }, clean: { @@ -149,7 +149,7 @@ module.exports = function( grunt ){ }, deploy: { src: [ 'deploy' ] - }, + } } }); @@ -175,7 +175,7 @@ module.exports = function( grunt ){ ]); grunt.registerTask( 'docs', [ - 'clean:apigen', + 'clean:apigen', 'shell:apigen' ]); @@ -184,8 +184,8 @@ module.exports = function( grunt ){ 'pot' ]); - grunt.registerTask( 'deploy', [ - 'clean:deploy', + grunt.registerTask( 'deploy', [ + 'clean:deploy', 'copy:deploy' ]); -}; \ No newline at end of file +};