From d7f9eeccfb5a7fea3c6df2cafb87328584a54f56 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 18 Feb 2014 17:35:11 +0200 Subject: [PATCH] Remove unneeded arrays. --- Gruntfile.js | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index f19a33c..013ff81 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,6 +1,5 @@ -'use strict'; - module.exports = function(grunt) { + 'use strict'; grunt.initConfig({ @@ -19,13 +18,13 @@ module.exports = function(grunt) { src: 'Gruntfile.js' }, src: { - src: ['src/**/*.js'] + src: 'src/**/*.js' }, tests: { - src: ['tests/*.js'] + src: 'tests/*.js' }, web: { - src: ['master.js'] + src: 'master.js' } }, @@ -33,7 +32,7 @@ module.exports = function(grunt) { options: { banner: '<%= banner %>' }, - js: { + dist: { src: ['src/htmlparser.js', 'src/htmlminifier.js', 'src/htmllint.js'], @@ -51,7 +50,7 @@ module.exports = function(grunt) { }, minify: { files: { - 'dist/htmlminifier.min.js': '<%= concat.js.dest %>' + 'dist/htmlminifier.min.js': '<%= concat.dist.dest %>' } } } -- 2.34.1