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