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']); };