Commit 7947fd3fc2fcd608cb14548431a1044dc4e67c50

Authored by Eric Fernandez
1 parent c97aa11abb
Exists in master and in 1 other branch develop

post install

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
... ... @@ -35,7 +35,7 @@ gulp.task('templates', function() {
35 35 );
36 36 });
37 37  
38   -gulp.task('uglify', ['templates'], function() {
  38 +gulp.task('uglify', ['templates', 'uglify-spec'], function() {
39 39 return pump(
40 40 [
41 41 gulp.src([
... ... @@ -81,7 +81,7 @@ gulp.task('pre-commit', function() {
81 81  
82 82 gulp.task('clean-post-install', function() {
83 83 return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js',
84   - 'index.html'], {read: false})
  84 + 'index.html', 'spec'], {read: false})
85 85 .pipe(clean());
86 86 });
87 87