Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Fixed bug in gulp file, that results in docker build failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
kishorebanala committed Jun 9, 2020
1 parent e4a0c6f commit dac1120
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 38 deletions.
4 changes: 2 additions & 2 deletions ui/gulpfile.babel.js
Expand Up @@ -124,7 +124,7 @@ gulp.task('styles', () => {
});

gulp.task('public', () => {
gulp.src(paths.srcPublic).pipe(gulp.dest(paths.dist));
return gulp.src(paths.srcPublic).pipe(gulp.dest(paths.dist));
});

gulp.task('fonts', () => {
Expand Down Expand Up @@ -171,4 +171,4 @@ gulp.task(
gulp.series('clean', gulp.parallel('set-env', 'browserSync', 'watchTask', 'public', 'styles', 'fonts', 'images'))
);

gulp.task('build', gulp.series('clean', gulp.parallel('server-bundle', 'styles', 'fonts', 'public', 'images')));
gulp.task('build', gulp.series('clean', gulp.parallel('server-bundle', 'styles', 'fonts', 'public', 'images')));
52 changes: 16 additions & 36 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit dac1120

Please sign in to comment.