From bf514bc085343bb37bfb1ad3fb7b8bd81204e0ae Mon Sep 17 00:00:00 2001 From: jaubourg Date: Tue, 16 Oct 2012 07:32:53 -0400 Subject: [PATCH] latest jshint requires "use strict"; declaration when enforcing strict mode --- grunt.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/grunt.js b/grunt.js index 2ddb3001c..1917f52a0 100644 --- a/grunt.js +++ b/grunt.js @@ -8,6 +8,8 @@ /*jshint node: true */ /*global config:true, task:true, process:true*/ +"use strict"; + var child_process = require("child_process"); module.exports = function( grunt ) { -- 2.39.5