Skip to content

Commit

Permalink
fixed #89
Browse files Browse the repository at this point in the history
  • Loading branch information
danialfarid committed Dec 31, 2013
1 parent 9813193 commit 880b3a0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ module.exports = function(grunt) {
flatten : true,
filter : 'isFile'
} ]
},
bower : {
files : [ {
expand : true,
cwd : 'dist/',
src : '*',
dest : '../angular-file-upload-bower/',
flatten : true,
filter : 'isFile'
} ]
}
},
uglify : {
Expand All @@ -52,6 +62,6 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-uglify');

// Default task(s).
grunt.registerTask('default', [ 'copy', 'uglify' ]);
grunt.registerTask('default', [ 'copy:build', 'uglify', 'copy:bower' ]);

};

0 comments on commit 880b3a0

Please sign in to comment.