From 48045ba5da90f091c5ce3f789e6da994f60a825a Mon Sep 17 00:00:00 2001 From: Sebastian Janzen Date: Wed, 12 Feb 2014 16:35:22 +0100 Subject: [PATCH] Remove trailing commas from Gruntfile --- Gruntfile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 5309730..a6be0fa 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -81,7 +81,7 @@ module.exports = function(grunt) { styles: { dest: './app/assets/app.css', src: [ - 'app/styles/app.css', + 'app/styles/app.css' //place your Stylesheet files here ] }, @@ -95,10 +95,10 @@ module.exports = function(grunt) { 'bower_components/angular-route/angular-route.js', 'bower_components/angular-animate/angular-animate.js', 'app/scripts/homePages.js', - 'app/scripts/app.js', + 'app/scripts/app.js' //place your JavaScript files here ] - }, + } }, watch: { @@ -147,7 +147,7 @@ module.exports = function(grunt) { type : 'html', dir : 'coverage/' } - }, + } } });