From 06d3debf389f78d7e3879dbc79f00f222a4a223d Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Sat, 31 Dec 2016 13:27:35 +1300 Subject: [PATCH] chore(build-system): fix grunt lint task --- gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gruntfile.js b/gruntfile.js index bd525ca6c..579b0e1cf 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -154,7 +154,7 @@ module.exports = function (grunt) { release: { src: '<%= src.html %>', options: { - root: '<%= distdir %>', + root: '<%= distdir %>' } } }, @@ -164,7 +164,7 @@ module.exports = function (grunt) { } }, usemin: { - html: ['<%= distdir %>/index.html'], + html: ['<%= distdir %>/index.html'] }, copy: { bundle: { @@ -318,7 +318,7 @@ module.exports = function (grunt) { } }, jshint: { - files: ['gruntFile.js', '<%= src.js %>', '<%= src.scenarios %>'], + files: ['gruntfile.js', '<%= src.js %>'], options: { curly: true, eqeqeq: true,