From f75be2d140b45bf334e231973bee03ccff9d9391 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Wed, 13 May 2015 11:26:16 -0400 Subject: [PATCH] Gruntfile cleanup (for vimdiff purposes) --- Gruntfile.coffee | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 3bc5f69..6db0a95 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -31,7 +31,7 @@ module.exports = (grunt) -> jshint: files: ['js/*.js'] tasks: ['jshint'] - + sass: files: ['css/source/theme.scss'] tasks: ['sass'] @@ -41,7 +41,7 @@ module.exports = (grunt) -> theme: files: 'css/theme.css': 'css/source/theme.scss' - + connect: livereload: @@ -91,7 +91,7 @@ module.exports = (grunt) -> filter: 'isFile' }] - + buildcontrol: options: @@ -103,7 +103,7 @@ module.exports = (grunt) -> options: remote: 'git@github.com:atomaka/ruby-project-euler-talk.git' branch: 'gh-pages' - + # Load all grunt tasks. @@ -147,13 +147,13 @@ module.exports = (grunt) -> 'copy' ] - + grunt.registerTask 'deploy', 'Deploy to Github Pages', [ 'dist' 'buildcontrol' ] - + # Define default task. grunt.registerTask 'default', [