From 467e1990ab2d63ae5816a8e2fa0408fbf4f23153 Mon Sep 17 00:00:00 2001 From: Kyle Robinson Young Date: Tue, 6 Aug 2013 09:57:48 -0700 Subject: [PATCH] Add trailing commas (to secretly nudge travis-ci) --- Gruntfile.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 17216d2..f14da2f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -14,11 +14,11 @@ module.exports = function(grunt) { all: [ 'Gruntfile.js', 'tasks/**/*.js', - '<%= nodeunit.tests %>' + '<%= nodeunit.tests %>', ], options: { - jshintrc: '.jshintrc' - } + jshintrc: '.jshintrc', + }, }, watch: { all: { @@ -27,8 +27,8 @@ module.exports = function(grunt) { }, }, nodeunit: { - tests: ['test/tasks/*_test.js'] - } + tests: ['test/tasks/*_test.js'], + }, }); // Dynamic alias task to nodeunit. Run individual tests with: grunt test:events