Commit ebecc29cca0f4f94aa44fd7f7403281c49d3debd
Exists in
master
and in
1 other branch
Merge branch 'master' into 'master'
Master(efernandez) See merge request !31
Showing
1 changed file
Show diff stats
gulpfile.js
... | ... | @@ -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 |