From ccf3da7962176920d7a9bc9d64efca6255c13da0 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 22 Jan 2016 13:54:38 -0500 Subject: [PATCH] using tabs in gruntfile --- Gruntfile.js | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 1d1fc8c..56b454c 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,20 +1,21 @@ module.exports = function(grunt) { - grunt.initConfig({ - pkg: grunt.file.readJSON('package.json'), - watch: { - options: { - livereload: { - port: 35729 - } - }, - all: { - files: ['**/*'], - tasks: [] - } - } - }); + grunt.initConfig({ + pkg: grunt.file.readJSON('package.json'), + watch: { + options: { + livereload: { + port: 35729 + } + }, + all: { + files: ['**/*'], + tasks: [] + } + } + }); + + grunt.loadNpmTasks('grunt-contrib-watch'); + grunt.registerTask('default', ['watch']); - grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.registerTask('default', ['watch']); };