1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-01-18 04:48:50 +01:00

gulp: fix swconcat task

This commit is contained in:
Kushagra Gour 2018-06-19 10:59:46 +05:30
parent 7a5c55a27c
commit 475e429b89

View File

@ -90,7 +90,7 @@ gulp.task('useRef', function() {
gulp.task('concatSwRegistration', function() {
gulp
.src(['app/service-worker-registration.js', 'app/script.js'])
.src(['src/service-worker-registration.js', 'app/script.js'])
.pipe(concat('script.js'))
.pipe(gulp.dest('app'));
});