Skip to content

Commit

Permalink
Removed redundant clean step.
Browse files Browse the repository at this point in the history
  • Loading branch information
oblador committed Oct 6, 2013
1 parent f2d2bf3 commit 28fd41e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module.exports = function (grunt) {


// Project configuration.
grunt.initConfig({
jshint: {
Expand All @@ -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: {
Expand Down Expand Up @@ -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']);
};

0 comments on commit 28fd41e

Please sign in to comment.