From ff0a87c671edef6c4a0b9a1f4445e62d902d3987 Mon Sep 17 00:00:00 2001 From: Mario Colque Date: Mon, 20 Jan 2014 12:33:01 -0300 Subject: [PATCH] grunt-nodemon options updated to the new version --- Gruntfile.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index e83a514..850dd20 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -63,11 +63,10 @@ module.exports = function(grunt) { nodemon: { dev: { + script: 'server.js', options: { - file: 'server.js', args: [], - ignoredFiles: ['public/**', 'test/**','util/**'], - watchedExtensions: ['js'], + ignore: ['public/**', 'test/**','util/**'], // nodeArgs: ['--debug'], delayTime: 1, env: { @@ -95,7 +94,7 @@ module.exports = function(grunt) { //Default task(s). grunt.registerTask('default', ['jshint','concurrent']); - + //Test task. grunt.registerTask('test', ['env:test', 'mochaTest']); };