diff --git a/.gitignore b/.gitignore index 22bccc2..8936e77 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ node_modules bower_components cache +dev +dist diff --git a/client/gulpfile.js b/client/gulpfile.js index 906d666..a9784f6 100644 --- a/client/gulpfile.js +++ b/client/gulpfile.js @@ -75,7 +75,7 @@ gulp.task('html_debug', function() { .pipe(gulp.dest('dev')); }); -gulp.task('html_release', function() { +gulp.task('html_release', ['scripts', 'styles'], function() { var sources = gulp.src(['dist/*.js', 'dist/*.css'], { read: false }); return gulp.src(paths.html) .pipe(inject(sources, { addRootSlash: false, ignorePath: 'dist' }))