Commit 556f72f8d4b83962b45ff83ad6224705008abb1a
Exists in
master
Merge branch 'master' into 'master'
Master(efernandez) See merge request !32
Showing
1 changed file
Show diff stats
gulpfile.js
| ... | ... | @@ -44,7 +44,6 @@ gulp.task('uglify', ['templates', 'uglify-spec'], function() { |
| 44 | 44 | ]), |
| 45 | 45 | concat('foca-abm-vehiculo.js'), |
| 46 | 46 | replace("src/views/", ''), |
| 47 | - replace("'ngRoute'", ''), | |
| 48 | 47 | gulp.dest(paths.tmp), |
| 49 | 48 | rename('foca-abm-vehiculo.min.js'), |
| 50 | 49 | uglify(), |
| ... | ... | @@ -57,6 +56,7 @@ gulp.task('uglify-spec', function() { |
| 57 | 56 | return pump([ |
| 58 | 57 | gulp.src(paths.specs), |
| 59 | 58 | concat('foca-abm-vehiculo.spec.js'), |
| 59 | + replace("src/views/", ''), | |
| 60 | 60 | header("describe('Módulo foca-abm-vehiculo', function() { \n"), |
| 61 | 61 | footer("});"), |
| 62 | 62 | gulp.dest(paths.dist) |