From 6c9e039e0c9c2cf9ec2154963a95326ce2e27794 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 22 Jan 2016 13:44:23 -0500 Subject: [PATCH] adding grunt file --- Gruntfile.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Gruntfile.js diff --git a/Gruntfile.js b/Gruntfile.js new file mode 100644 index 0000000..1d1fc8c --- /dev/null +++ b/Gruntfile.js @@ -0,0 +1,20 @@ +module.exports = function(grunt) { + + 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']); +};