From 2b745866601a4711cc2bb58869478af26d548b87 Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Mon, 26 May 2014 22:10:51 -0400 Subject: [PATCH] don't use watch anymore --- Gruntfile.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 1abb9258..68c9532d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -105,10 +105,6 @@ module.exports = function(grunt) { clean: { options: {force: true}, generated: [tempFolder] - }, - watch: { - files: ["./**/*"], - tasks: ["build"] } }); @@ -116,7 +112,6 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-contrib-concat'); grunt.loadNpmTasks("grunt-contrib-copy"); grunt.loadNpmTasks("grunt-contrib-uglify"); - grunt.loadNpmTasks("grunt-contrib-watch"); grunt.loadNpmTasks('grunt-execute'); grunt.loadNpmTasks("grunt-md2html"); grunt.loadNpmTasks("grunt-replace"); @@ -124,6 +119,6 @@ module.exports = function(grunt) { grunt.registerTask("build", ["test", "uglify", "zip", "md2html", "replace", "copy", "clean"]); grunt.registerTask("test", ["concat", "execute"]); - grunt.registerTask("default", ["build", "watch"]); + grunt.registerTask("default", ["build"]); };