From 28fd41eb9d7f3736b44893ed141a5853764f0013 Mon Sep 17 00:00:00 2001 From: Joel Arvidsson Date: Sun, 6 Oct 2013 13:33:38 +0200 Subject: [PATCH] Removed redundant clean step. --- Gruntfile.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 2d35b82..764cb2d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,6 +1,5 @@ module.exports = function (grunt) { - // Project configuration. grunt.initConfig({ jshint: { @@ -15,8 +14,7 @@ module.exports = function (grunt) { }, }, clean: { - dist: ['angular-scroll.js', 'angular-scroll.min.js'], - tmp: ['tmp'] + dist: ['angular-scroll.js', 'angular-scroll.min.js', 'angular-scroll.min.js.map'] }, concat: { options: { @@ -59,5 +57,5 @@ module.exports = function (grunt) { grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-ngmin'); - grunt.registerTask('default', ['jshint', 'clean', 'concat', 'ngmin', 'uglify', 'clean:tmp']); + grunt.registerTask('default', ['jshint', 'clean', 'concat', 'ngmin', 'uglify']); };