From fcfbf8defccaa82bd4a3b6b6443e34f98c5e29c5 Mon Sep 17 00:00:00 2001 From: JayWood Date: Sun, 13 Jul 2014 17:50:36 -0400 Subject: [PATCH] Move rsync to separate tasks for windows-based dev environments without rsync --- gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gruntfile.js b/gruntfile.js index 273ef13..5143da5 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -105,5 +105,6 @@ module.exports = function ( grunt ){ grunt.loadNpmTasks('grunt-rsync'); // Default task - grunt.registerTask('default', ['jshint', 'sass', 'uglify', 'cssmin', 'rsync']); + grunt.registerTask('default', ['jshint', 'sass', 'uglify', 'cssmin']); + grunt.registerTask('sync', ['rsync']); }; \ No newline at end of file