Skip to content

Commit

Permalink
Clean up _tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
passy committed Mar 22, 2014
1 parent 6474fff commit 201f994
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions Gruntfile.js
Expand Up @@ -26,7 +26,14 @@ module.exports = function (grunt) {
files: [{
dot: true,
src: [
'<%= yeoman.dist %>',
'<%= yeoman.dist %>'
]
}]
},
tmp: {
files: [{
dot: true,
src: [
'_tmp'
]
}]
Expand Down Expand Up @@ -168,7 +175,8 @@ module.exports = function (grunt) {
'clean:dist',
'copy',
'react',
'reduce'
'reduce',
'clean:tmp'
]);

grunt.registerTask('default', [
Expand All @@ -177,7 +185,7 @@ module.exports = function (grunt) {
]);

grunt.registerTask('serve', [
'clean:dist',
'clean',
'connect:livereload',
'watch'
]);
Expand Down

0 comments on commit 201f994

Please sign in to comment.